我在 MVC3 应用程序中有一个自定义错误处理程序类属性。它ExceptionContext
作为参数。我想在编写错误日志后重定向到 error.html 页面。我已经尝试过,但它不起作用。请问有什么建议吗?
context.Result = new RedirectResult("~/Error.html");
自定义错误处理程序
private static void LogUnhandledException(ExceptionContext context)
{
var e = context.Exception;
ErrorLog.Error(1, e.Message, e, "test");
// Redirect to Error Page
//context.Result = new RedirectResult("~/Error.htm");
context.Result = new FilePathResult("~/Error.htm", "text/html");
}
谢谢