Home »

How to set the debug mode?

Question ListCategory: .NETHow to set the debug mode?
alisataylore190 author asked 8 years ago
1 Answers
jully882 author answered 8 years ago

Debug Mode for ASP.NET applications – To set ASP.NET appplication in debugging mode, edit the application’s web.config and assign the “debug” attribute in <> section to “true” as show below:<> <> < defaultlanguage=”vb” debug=”true”>………< / configuration >
This case-sensitive attribute ‘debug tells ASP.NET to generate symbols for dynamically generated files and enables thedebugger to attach to the ASP.NET application. ASP.NET will detect this change automatically, without the need to restart the server. Debug Mode forASP.NET Webservices – Debugging an XML Web service created with ASP.NET is similar to the debugging an ASP.NET Web application.

Please login or Register to Submit Answer