How to set the debug mode



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

Post New Answer

More Dot Net Framework Interview Questions

What meant of assembly & global assembly cache (gac) & Meta data

1 Answers  


explain lazy loading, eager loading, and explicit loading?

0 Answers   Microsoft,


When was .NET announced

1 Answers  


Which is the best institute for .net?

16 Answers  


What is the difference between STA and MTA?

3 Answers  






What is the purpose of a web form?

0 Answers  


When do you absolutely have to declare a class as abstract

1 Answers   Siebel Systems,


what are abstract classes? what is overriding?

12 Answers  


What is strong name and which tool is used for this ?

4 Answers   Accenture, BirlaSoft,


what is mean by type-safe? Please answer me. Advance thanks.

0 Answers   Excel,


What is the difference between Finalize and Dispose (Garbage collection)

1 Answers  


How many .NET languages can a single .NET DLL contain

1 Answers  


Categories