1

我已经设置了一个自定义错误处理程序,以便在发生崩溃时向用户显示诊断信息。问题是未显示自定义错误页面,并且在尝试显示错误页面时抛出异常(根据网页)。我无法弄清楚是什么原因造成的?我为 500 和 404 错误设置了类似的页面,它们可以正常工作。

错误页面说Server Error in '/' Application.

描述:处理您的请求时发生异常。此外,在执行第一个异常的自定义错误页面时发生了另一个异常。请求已终止。

生病显示我的设置片段,如果有人想看更多,请询问。仅供参考,我通过从我的删除连接字符串详细信息来抛出异常web.config(这是我们在部署期间看到的实际错误,所以我想专门针对它)

<system.webServer>
  <httpErrors errorMode="Custom">
    <remove statusCode="404" />
    <error statusCode="404" path="/error/notfound" responseMode="ExecuteURL" />
    <remove statusCode="403" />
    <error statusCode="403" path="/error/forbidden" responseMode="ExecuteURL" />
    <remove statusCode="500" />
    <error statusCode="500" path="/error/" responseMode="ExecuteURL" />
  </httpErrors>
</system.webServer>

<!-- .... -->

<system.web>
  <customErrors mode="On" defaultRedirect="~/Error" redirectMode="ResponseRewrite">
    <error redirect="~/Error/NotFound" statusCode="404" />
    <error redirect="~/Error/Forbidden" statusCode="403"  />
    <error redirect="~/Error/" statusCode="500"  />
  </customErrors>
</system.web>

然后我有一个带有默认Index()功能的 ErrorController(此控制器中没有断点被命中)

public ViewResult Index()
{
    return View("Error");
}

注意:我有函数Forbidden()NotFound()- 我只是没有在这里复制它们 - 这些错误工作得很好。

4

3 回答 3

2

您是否拥有在 web.config 中指定的所有可用根?似乎您的控制器只有索引操作,返回一些视图,但它也应该具有NotFoundForbidden操作,或者至少正确的路由,例如:

routes.MapRoute(
    "NotFound",
    "Error/NotFound",
    new { controller = "Error", action = "Index" }, //bind all routes to single action
    null, controllerNamespaces
);
routes.MapRoute(
    "Forbidden",
    "Error/Forbidden",
    new { controller = "Error", action = "Index" }, //bind all routes to single action
    null, controllerNamespaces
);
于 2013-08-01T08:46:00.627 回答
1

如果您没有设置 NotFound 和 Forbidden 操作,则这些错误可能会引发第二个异常,该异常将进入您的索引页面,因为它是默认设置。尝试将另外两个添加到您的控制器中,看看它们是否被击中,也许您可​​以更轻松地找到问题。

另请注意 ResponseRewrite 与 mvc 不兼容,请参阅此处的答案:CustomErrors does not work when setting redirectMode="ResponseRewrite"

于 2013-08-01T09:45:28.223 回答
0

重定向到另一个动作时不能使用redirectMode="ResponseRewrite",必须使用redirectMode="ResponseRedirect"。你将失去使用 Server.GetLastError() 的能力,但如果你不需要它,你会没事的。

于 2015-01-07T17:49:34.210 回答