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 |
Can u tell me differences which are introduced in .Net 1.1 and 2.0 and 3.0 and also in 3.5 ? by detailed?
What are attributes
Difference between .NET & J2EE
Mention two instances where routing is not implemented or required?
About namespaces ?
What is entity graph? : Entity framework
What is attribute routing in mvc?
I have a GridView on web form, and a column in a grid is a linkbutton to open popup..., my problem is when i click on link button in a gridview popup opens as well works fine. but when i click on link button once again my popup window doesnt open. Can any one help please...
Can I use razor code in javascript in asp.net mvc?
What are the components required to create a route in mvc?
What is namespace of asp.net mvc?
Briefly describe the roles of clr in .net framework?