Web.config - 指定错误的默认错误页面

时间:2014-06-01 20:27:33

标签: asp.net .net iis web-config

我知道我可以根据错误类型指定错误页面: 404 500 ,...

我正在寻找的是我所做的任何错误的默认错误页面指定页面。例如 - 如果我只添加一个

<error statusCode="404"  responseMode="ExecuteURL" path="/.../404.aspx"/>

发生 500 - 我希望它转到某些AnyError.aspx。我该怎么做?

1 个答案:

答案 0 :(得分:0)

尝试在defaultPath上指定defaultResponseMode<httpErrors>属性,如下所示:

<httpErrors mode="On" defaultPath="/AnyError.aspx" defaultResponseMod="ExecuteURL">
    <error statusCode="404"  responseMode="ExecuteURL" path="/.../404.aspx"/>
</httpErrors>