vote up 0 vote down star

In my web.config I have the standard element;

<compilation debug="true" defaultLanguage="c#">

I know I could use [Conditional("DEBUG")] on methods, or use some pre-compiler if statement like #if DEBUG, but what I am looking for is the built-in .NET framework setting that lets me know if the setting for debug in the compilation section.

I've seen it done before but can't find it or remember it.

Duplicate - Programmatically access the <compilation /> section of a web.config?

flag

Duplicate (see edit) – Marc Gravell Jan 16 at 10:44

1 Answer

vote up 1 vote down check

HttpContext.Current.IsDebuggingEnabled (posted by Jason Diamond) was what I was looking for.

Thanks for your help Marc!

link|flag
You might want to close the question, then. And maybe chuck Jason a +1 ;-p – Marc Gravell Jan 16 at 11:03
How do I close a question? (Sorry - bit of a noob) – Ian Quigley Jan 16 at 11:25

Your Answer

Get an OpenID
or

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