Answer Posted / 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 |
Post New Answer View All Answers
What are sections?
Explain the advantages of dependency injection (di) in asp.net mvc?
What is the "helperpage.isajax" property?
What is the .net framework?
What is the use of action filters in an mvc application?
what is entity framework?
What is the significance of nonactionattribute?
What is the need of Action Filters in ASP.Net MVC
What are the components required to create a route in ASP.Net MVC?
How does servicing work for the .net framework 3.0? If I install the .net framework 3.0, can I get service updates for the .net framework 2.0?
Give an example for authorization filters in an asp.net mvc application?
How we can add the css in mvc?
What is .net framework in simple terms?
What is the importance of NonActionAttribute?
what is lazy loading in entity framework?