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 entity graph? : Entity framework
i just want to write an exam regarding .net?plz give me information about taking a test?where to pay 4 d exam,exam centre?
How we can add the css in mvc?
what are generics? Without generics what are the disadvantages in 1.1?
3 Answers HP, iSoft, nTech Solutions,
What is the use of the default route {resource}.axd/{*pathinfo} ?
What is html.renderpartial?
what is model first approach?
What are the advantages of mvc over asp.net?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
What is the use of finalize and dispose eventhough garbage collector is working?
What is .net framwork?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?