运行时错误,即使有错误处理
本文关键字:有错误 处理 运行时错误 | 更新日期: 2023-09-27 17:56:09
我按照以下教程对我的 MVC4 项目进行了 razor 语法的异常处理:http://www.devcurry.com/2012/06/aspnet-mvc-handling-exceptions-and-404.html
遵循它后,我仍然会收到运行时错误,因此例如当我输入错误的 url 时,不会重定向到我的错误页面。当我这样做时,将记录异常和所有异常,并且我传递了我在教程中添加的方法,但最终它会转到以下页面:
http://[ipadress]:9880/Error?aspxerrorpath=/test
并向我展示:
Runtime Error
Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
本教程和我的项目之间的唯一主要区别是我使用额外的分段语言。
我有以下代码用于错误处理。
在我的路由配置文件中:
routes.MapRoute(
name: "FailWhale",
url: "{language}/FailWhale/{action}/{id}",
defaults: new { language = "en-US", controller="Error" ,action = "FailWhale", id = UrlParameter.Optional }
);
在我的过滤器配置中:
public class HandleAndLogErrorAttribute : HandleErrorAttribute
{
public override void OnException(ExceptionContext filterContext)
{
var exception = filterContext.Exception;
var httpException = exception as HttpException;
if (httpException != null) LogGateway.For(this).Fatal("Fatal Http exception occured --- " + httpException.Message);
else LogGateway.For(this).Fatal("Fatal exception occured --- " + exception.Message);
base.OnException(filterContext);
}
}
我的网络配置:
<customErrors mode="On" defaultRedirect="Error">
<error statusCode="404" redirect="en-US/FailWhale" />
</customErrors>
我的错误控制器:
public ActionResult FailWhale()
{
Response.StatusCode = 404;
Response.TrySkipIisCustomErrors = true;
LogGateway.For(this).Error("Fatal Http exception occured --- " + Response.StatusCode + ": " + Response.StatusDescription);
return View();
}
我可能在这里监督一些事情?
我已经将运行该网站的PC链接到 dyndns.org 子域进行测试,并发现我的问题得到了正确处理。