How do I check if Debug is enabled in web.config - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:00:46Z http://stackoverflow.com/feeds/question/542875 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/542875/how-do-i-check-if-debug-is-enabled-in-web-config 2 How do I check if Debug is enabled in web.config Dscoduc 2009-02-12T19:31:00Z 2009-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#542896 10 Answer by driis for How do I check if Debug is enabled in web.config driis 2009-02-12T19:38:55Z 2009-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#542921 2 Answer by Josh for How do I check if Debug is enabled in web.config Josh 2009-02-12T19:44:44Z 2009-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>