ASP .Net MVC中的错误处理

时间:2016-03-08 15:52:23

标签: c# asp.net asp.net-mvc asp.net-mvc-4 error-handling

作为MVC的新手,我尝试在我的演示应用程序中实现自定义错误处理。 我尝试了这个文件的几个步骤 Error Handling Document 但是没有显示错误404的自定义错误页面。

这是我到目前为止所尝试的内容。

我的web.config看起来像:

enter image description here

FilterConfig.cs看起来像:

enter image description here

以下是第一轮测试的自定义示例错误页面page404.html:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <h1>Page is not there dude !!</h1>
    Sorry about this.
</body>
</html>

但是当一个请求没有配置到我的应用程序的URL时,我仍然得到了无法找到的页面错误页面。

enter image description here

我错过了什么?

更新

我明白接下来我必须将错误页面更新为.aspx页面。但是现在我只想让初始版本起作用。

请在下面找到web.config:

<?xml version="1.0"?>

<configuration>

  <configSections>
    <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
      <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
      <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
    </sectionGroup>
  </configSections>

  <system.web.webPages.razor>
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    <pages pageBaseType="System.Web.Mvc.WebViewPage">
      <namespaces>
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Optimization"/>
        <add namespace="System.Web.Routing" />
      </namespaces>
    </pages>
  </system.web.webPages.razor>

  <appSettings>
    <add key="webpages:Enabled" value="false" />
  </appSettings>

  <system.web>
    <customErrors mode="On">
      <error statusCode="404" redirect="~/Error/page404.html"/> <!--On all 404 pages, show page404.aspx-->
    </customErrors>
    <httpHandlers>
      <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/>
    </httpHandlers>

    <!--
        Enabling request validation in view pages would cause validation to occur
        after the input has already been processed by the controller. By default
        MVC performs request validation before a controller processes the input.
        To change this behavior apply the ValidateInputAttribute to a
        controller or action.
    -->
    <pages
        validateRequest="false"
        pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
        pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
        userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
      <controls>
        <add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
      </controls>

    </pages>
  </system.web>

  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />

    <handlers>
      <remove name="BlockViewHandler"/>
      <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />  
  </handlers>
  </system.webServer>
</configuration>

1 个答案:

答案 0 :(得分:2)

尝试在<customErrors>部分添加块<system.web>,如下所示:

<configuration>
<system.web>
    <customErrors mode="On">
      <error statusCode="404" redirect="~/Error/error.html" />
    </customErrors>
</system.web>
</configuration>

[更新] 根据上一个屏幕截图,如果出现以下问题,则应出现此问题:

  1. 客户端模式已关闭。
  2. 状态代码不匹配。
  3. 两者都不在你的web.config中,所以在服务器上尝试iisreset。 附加的web.config类似于&#34; view&#34;文件夹,直接在web应用程序下试用web.config