我如何检查MVC cshtml页面中的调试模式

时间:2017-09-24 15:47:43

标签: asp.net-mvc debugging razor

如何检查MVC cshtml页面中的调试模式?此代码在cshtml页面中不起作用。

@{
bool isRelease = false;
#if DEBUG
isRelease = false;
#else
isRelease = true;
#endif
} @{ if(isRelease) { < p > result1 < /p > } else { < p > result2 < /p >} }

应用程序显示“结果2”但必须显示“结果1”

1 个答案:

答案 0 :(得分:5)

检查这些:

HttpContext.IsDebuggingEnabled

HttpContext.Current.IsDebuggingEnabled

参考: IsDebuggingEnabled