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 |
what is the diff b/w asp.net 2.0 & 3.5
Explain the advantages and disadvantages of ASP.Net MVC over ASP.NET?
What is entity sql? : Entity framework
what is view state
What are the components required to create a route in ASP.Net MVC?
What are the methods in Thread class?
What is the CLR
How to bind table colum with gridview column?
What is the difference between windows vista and .net framework 3.0 ?
Where is tempdata stored?
Explain how you can send the result back in JSON format in MVC?
Explain tempdata in mvc?