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 model first? : Entity framework
What is .net architecture?
What you mean by routing in mvc?
Can you explain renderbody and renderpage in mvc?
Can you explain the page life cycle of mvc?
what is client wins and store wins mode in entity framework concurrency?
What is the .net framework and how does it work?
What is the need of Action Filters in ASP.Net MVC
Explain what is the difference between view and partial view?
What is .net framework in simple terms?
What is conceptual model? : Entity framework
Which are the important namespaces used in mvc?
How to Redirect Tracing to a File
What are the new features 3.5 framework against with the tool?
What are the new enhancements done in default project template of asp.net mvc 4?