Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

ConfigurationSettings.GetConfig("system.web/compilation").Debug.ToString()

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?

Much appreciated!

share|improve this question

2 Answers

up vote 47 down vote accepted

Use:

HttpContext.Current.IsDebuggingEnabled

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.

share|improve this answer
2  
Great! This is a much better way to check for debug than reading the web.config directly... One thing worth mentioning, I found an article that indicates this method won't take into account if the debug is set at the page level. petesbloggerama.blogspot.com/2007/01/is-debug-mode-evil.html – Dscoduc Feb 12 '09 at 19:47

the following should work

var cfg=(System.Web.Configuration.CompilationSection) ConfigurationManager.GetSection("system.web/compilation");
if (cfg.Debug)
{
...
}
share|improve this answer
Excellent, thank you. – Dscoduc Feb 12 '09 at 19:46
That's a pretty complicated and error prone way to get at it. Should use @driis answer. – Ben Lakey Apr 26 '12 at 1:08
I'd agree Byte which is even why I +1'd his answer.... – JoshBerke May 3 '12 at 14:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.