我试图在我的MVC应用程序中实现全局错误处理.
我的Application_Error中有一些逻辑重定向到一个ErrorController,但它不工作.
我在Global.aspx中的Application_Error方法中有一个断点.
当我强制一个异常时,断点没有被击中.任何想法为什么?
解决方法
您可以尝试这种方法进行测试:
protected void Application_Error(object sender,EventArgs e) { var error = Server.GetLastError(); Server.ClearError(); Response.ContentType = "text/plain"; Response.Write(error ?? (object) "unknown"); Response.End(); }
Web.config文件
<customErrors mode="Off" />
> Rich Custom Error Handling with ASP.NET
> How to: Handle Application-Level Errors