public class MvcApplication : System.Web.HttpApplication
{
#if DEBUG
/// <summary>
/// 是否为调试模式,true是调试环境,false是Release
/// </summary>
public const bool IsDebugMode = true;
#else
/// <summary>
/// 是否为调试模式,true是调试环境,false是Release
/// </summary>
public const bool IsDebugMode=false;
#endif