如何继续标准Asp.net Mvc - 应用程序错误页面

时间:2013-12-14 18:05:40

标签: c# asp.net-mvc asp.net-mvc-5

如果我的mvc应用程序在发布模式(发布模式)下运行

,我处理了所有错误消息

但是当我在调试模式下工作时,我看不到标准的mvc应用程序错误页面。

因为它正在重定向到位于共享文件夹中的Error.cshtml。

如何查看(或重定向?)标准mvc错误页面?

    protected void Application_Error()
    {
        // ReSharper disable once RedundantAssignment
        // ReSharper disable once ConvertToConstant.Local
        bool isCustomErrorEnabled = false;

- #如果(!DEBUG)             isCustomErrorEnabled = true; - #ENDIF

        // ReSharper disable once ConditionIsAlwaysTrueOrFalse
        if (isCustomErrorEnabled) //Context.IsCustomErrorEnabled
        {
            ShowCustomErrorPage(Server.GetLastError());
        }
        else
        {
            //in this line, I want to continue to show standart 
            // application error page which has error message and stack trace
        }

    }

更新 - 这是我的Web.Config文件;

  <system.web>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<globalization uiCulture="auto" culture="auto" />
<customErrors defaultRedirect="/Home/OldLink" mode="On" redirectMode="ResponseRewrite">
  <!-- RemoteOnly : Specifies that custom errors are shown only to the remote clients, and that ASP.NET errors are shown to the local host. This is the default value. -->
</customErrors>

                                                                 

1 个答案:

答案 0 :(得分:0)

MVC 4使用HandleError属性处理错误的默认支持是将您重定向到Error.cshtml。

只需使用customErrors mode="off"

更新您的web.config