我在控制器操作上使用[HandleError]属性有问题 – 它似乎没有任何工作(即使过滤器不存在也不重要 – 我得到相同的结果…).当抛出异常时,我会在’/’应用程序错误页面中获得标准的Red-toned Server Error,而不是我的自定义视图.
我在SO上找到了一些关于这个主题的其他线程,在大多数情况下,在web.config中将customErrors选项设置为On可以解决问题.它对我来说并不是这样,所以我需要找到一个不同的解决方案.
我的控制器动作:
[HandleError] public ActionResult Index() { throw new Exception("oops..."); return View(); }
在我的web.config文件
<customErrors mode="On"></customErrors>
我已经确保Error.aspx文件也在共享目录中.我失踪了什么
我正在运行ASP.NET MVC RC刷新.
解决方法
两件有用的事情要知道:
默认情况下,HandleError在开发服务器下运行时不执行任何操作.目的是向开发者展示更多有用的信息:
public virtual void OnException(ExceptionContext filterContext) { if (filterContext == null) { throw new ArgumentNullException("filterContext"); } // If custom errors are disabled,we need to let the normal ASP.NET // exception handler execute so that the user can see useful // debugging information. if (filterContext.ExceptionHandled || ! filterContext.HttpContext.IsCustomErrorEnabled) { return; }
请注意,这种情况正是customError应该控制的.如果设置customError =“On”不会更改此行为:
>检查你的语法.
>确保您正在编辑项目根目录中的Web.config,而不是“视图”中的Web.config.
>确保没有代码设置HttpContext.IsCustomErrorEnabled.
>如果其他所有失败,请尝试在Web.config中关闭调试