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 |
Explain unit test done by tester on development team?
What is the use of razor view engine?
What is controllercontext?
what is view state
how to maintain the session state? what is Abstract class and interface and inheritence with example?
What is the difference between managed and unmanaged code?
reading doc file in textbox using .net2005 with c#
What are the Core features of ASP.NET MVC?
How does the .net framework 3.0 relate to windows vista?
what is way of loading data in ef (entity framework)?
give the feature of .net2.0 over .net1.1
What are the sub types of ActionResult?