How do I check if Debug is enabled in web.config - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:00:46Zhttp://stackoverflow.com/feeds/question/542875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/542875/how-do-i-check-if-debug-is-enabled-in-web-config2How do I check if Debug is enabled in web.configDscoduc2009-02-12T19:31:00Z2009-02-12T19:44:44Z
<p>I have some code from my VB.NET 1.1 days that allowed me to dynamically check if Debug was enabled in web.config. I figured why re-invent the wheel in turning on/off logging if I could simply have the web administrator enable debug. Here is the code I used in VB.NET that worked just fine:</p>
<pre><code>ConfigurationSettings.GetConfig("system.web/compilation").Debug.ToString()
</code></pre>
<p>When I wanted to convert this to C# and use it in .NET 3.5 I ran into some trouble and it wouldn't work. Additionally, I would like to use the newer construct of ConfigurationManager.GetSection. Can anyone suggest how best to read the system.web/compilation/debug=true|false value?</p>
<p>Much appreciated!</p>
http://stackoverflow.com/questions/542875/how-do-i-check-if-debug-is-enabled-in-web-config/542896#54289610Answer by driis for How do I check if Debug is enabled in web.configdriis2009-02-12T19:38:55Z2009-02-12T19:38:55Z<p>Use:</p>
<pre><code>HttpContext.Current.IsDebuggingEnabled
</code></pre>
<p>This property actually looks at the web.config configuration setting. If you look at it using Reflector you will find that it gets the actual ConfigurationSection object using some internal classes.</p>
http://stackoverflow.com/questions/542875/how-do-i-check-if-debug-is-enabled-in-web-config/542921#5429212Answer by Josh for How do I check if Debug is enabled in web.configJosh2009-02-12T19:44:44Z2009-02-12T19:44:44Z<p>the following should work </p>
<pre><code>var cfg=(System.Web.Configuration.CompilationSection) ConfigurationManager.GetSection("system.web/compilation");
if (cfg.Debug)
{
...
}
</code></pre>