在ASP.NET MVC程序中,您可以使用
HttpContext.Current.IsDebuggingEnabled
为了确定web.config中是否debug="true"
。
如何在不参考HttpContext的情况下执行此操作?
答案 0 :(得分:8)
您必须手动阅读配置:
var compilation = (CompilationSection)ConfigurationManager.GetSection("system.web/compilation");
if (compilation.Debug)
{
//Debug is on!
}