我在VS10中启动了一个MVC 3模板项目,并修改了global.asax.cs:
public static void RegisterGlobalFilters(GlobalFilterCollection filters) { filters.Add(new HandleErrorAttribute { ExceptionType = typeof(DivideByZeroException),View = "DivideByZeroException",Order = 1 }); filters.Add(new HandleErrorAttribute { View = "AllOtherExceptions",Order = 2 }); }
到web.config我添加了:
<customErrors mode="On">
然后创建了相应的视图,最后在其中一个动作中添加了DivideByZero-throw.
结果:呈现了视图AllOtherExceptions.
解决方法
虽然我讨厌不同意达林所说的任何事情,但他错了.
设置属性没有问题(这就是你应该这样做的方式).
见MSDN:
The OnActionExecuting(ActionExecutingContext),
OnResultExecuting(ResultExecutingContext),and
OnAuthorization(AuthorizationContext) filters run in forward order.
The OnActionExecuted(ActionExecutedContext),and
OnException(ExceptionContext) filters run in reverse order.
因此,您的通用AllOtherExceptions过滤器需要是最低订单号,而不是最高订单号.
希望下次有用.