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
Can any particular component of .net framework 3.0 be removed?
Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?
What is entity framework? : Entity framework
What is difference between viewbag and viewdata and tempdata?
What are the possible razor view extensions?
What is a model in android?
What is renderbody?
What operating systems will the .net framework 3.0 be available for?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
Which .net framework is installed?
Why should we go for entity framework?
mention what is code first approach and model first approach in entity framework?
What is .net core framework?
What is presentation framework?
What is the use of razor view engine?