1

我目前正在我们的应用程序中添加异常管理。

在应用程序中,我有一个布局,基本上显示了一个新闻部分,@Html.Action("news")到目前为止,当发生异常时,我可以在新闻部分显示一条错误消息,说“它崩溃了”,但这并不是最好的吸引力......

如果子操作遇到异常,是否可以在父级别检测并重定向到错误页面?

4

2 回答 2

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>

高温高压

于 2012-06-01T20:14:05.760 回答
0

这篇文章可以满足您的需求。在应用程序级别,它捕获异常,您可以选择如何处理它们

ASP.NET MVC 自定义错误处理 Application_Error Global.asax?

于 2012-06-02T01:22:33.163 回答