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
Do you know about the new features in asp.net mvc 4 (asp.net mvc4)?
What is latest version of .net framework?
What is meant by viewdata?
Which approach provides better support for test driven development - asp.net mvc or asp.net webforms?
what is linq to entities?
Explain how you can send the result back in JSON format in MVC?
what is deferred loading(lazy loading)?
Which .net framework is installed?
What is the use of the default route {resource}.axd/{*pathinfo} ?
Explain the advantages of dependency injection (di) in asp.net mvc?
How to change the action name in ASP.Net MVC?
Is dapper better than entity framework?
what do you mean by table-per-type?
How we can add the css in mvc?
What is route config?