我目前正在我们的应用程序中添加异常管理。
在应用程序中,我有一个布局,基本上显示了一个通过@Html.Action("news")
呈现的新闻部分到目前为止,当发生异常时,我可以在新闻部分显示错误消息“好吧它崩溃了”但它不是非常吸引人的......
如果子操作遇到异常,是否可以在父级检测它并重定向到错误页?
答案 0 :(得分:1)
这就是我所做的。从SO上的类似问题得到这个(不确定是哪一个)。
public ActionResult TabInfo(int id, string tab)
{
try
{
var viewModel = _viewModelManager.GetViewModel(tab, id);
ViewBag.Jobid = id;
ViewBag.Tab = tab;
return PartialView(string.Format("~/Views/{0}/Index.cshtml", tab), viewModel);
}
catch (Exception e)
{
return View("ErrorChildAction");
}
}
ErrorChildAction视图
@model System.Web.Mvc.HandleErrorInfo
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!-- Redirect to an error page in the application root -->
<script type="text/javascript">
window.location.href = '@Url.Content("~/400.htm")';
</script>
</body>
HTH
答案 1 :(得分:0)
这篇文章可以满足您的需求。在应用程序级别,它捕获异常,您可以选择如何处理它们
ASP.NET MVC Custom Error Handling Application_Error Global.asax?