我正在使用MVC2 我的webconfig说
<customErrors mode="On" redirectMode="ResponseRewrite" defaultRedirect="~/internal-server-error">
<error statusCode="500" redirect="~/internal-server-error" />
<error statusCode="404" redirect="~/not-found" />
</customErrors>
我的测试方法说
public ActionResult ErrorTest()
{
var z = 0;
var x= 3/z;
return null;
}
我仍然得到默认的运行时错误 Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed.
,而不是我的自定义错误方法,甚至没有调用。
为什么呢? 这是开发服务器问题吗?它会在IIS上运行吗?
编辑:也在IIS Express上尝试过,在Application_Error
中注释掉整个Global.asax.cs
,但仍无效。
答案 0 :(得分:2)
尝试删除redirectMode="ResponseRewrite"
属性
CustomErrors does not work when setting redirectMode="ResponseRewrite"