在我的 web.config 中,我包括:
<customErrors mode="On" />
现在黄屏死机不再显示。我想我必须在我的控制器方法或类本身中包含 HandleError 属性:
[HandleError]
public ActionResult About()
{
throw new Exception("Just an exception");
return View();
}
但它没有任何作用,它与以下内容相同:
public ActionResult About()
{
throw new Exception("Just an exception");
return View();
}
在这两种情况下,都会显示自定义错误页面。那么 HandleError 属性是什么?