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 is a view engine?
what is deferred loading(lazy loading)?
What is attribute routing in mvc?
How can you return string result from Action in ASP.Net MVC?
how to disable the lazy loading framework?
How to change the action name in ASP.Net MVC?
What is stateless model?
What is renderbody?
What are Validation Annotations?
Is .net framework backwards compatible?
Where is the new functionality in the .net framework 3.0 (such as wcf, wf, wpf, and cardspace) installed to? Is that different from where the .net framework 2.0 is installed to?
Explain Sections is ASP.Net MVC?
What is meant by viewdata?
If I have multiple filters implemented, what is the order in which these filters get executed?
How does the .net framework 3.0 relate to the .net framework 2.0?