How to set the debug mode
Answer / kirti
Debug Mode for ASP.NET applications - To set ASP.NET application in debugging mode, edit the application's web.config and assign the "debug" attribute in < compilation > section to "true" as show below:
< configuration >
< system.web >
< compilation defaultLanguage="vb" debug="true" / >
....
...
..
< / configuration >
This case-sensitive attribute 'debug tells ASP.NET to generate symbols for dynamically generated files and enables the
debugger to attach to the ASP.NET application. ASP.NET will detect this change automatically, without the need to restart the server. Debug Mode for ASP.NET Webservices - Debugging an XML Web service created with ASP.NET is similar to the debugging an ASP.NET Web application.
| Is This Answer Correct ? | 0 Yes | 0 No |
Which are the important namespaces used in ASP.Net MVC?
what is lazy loading in entity framework?
What is entitytypes? : Entity framework
Explain tempdata in mvc?
What is the use of web api ? Why web api needed, if you have already restful services using wcf ?
What is entity graph? : Entity framework
What is GUID , why we use it and where
What is Dependency Injection in ASP.Net MVC
What are html helpers in asp.net mvc?
How we can handle the exception at controller level in ASP.Net MVC?
how do you mark a property as required? For example, for a project, the name is a required field.
How route table is created in ASP.NET MVC?