ASP.NET MVC中错误处理方式
2021-05-23 08:29
标签:csharp 参考 asp exception out 处理 ted asp.net div 重写OnException 参考来源:http://www.cnblogs.com/shenba/archive/2011/04/16/2018441.html ASP.NET MVC中错误处理方式 标签:csharp 参考 asp exception out 处理 ted asp.net div 原文地址:http://www.cnblogs.com/ncellit/p/7686331.html///
protected override void OnException(ExceptionContext filterContext)
{
// 标记异常已处理
filterContext.ExceptionHandled = true;
// 跳转到错误页
filterContext.Result = new RedirectResult(Url.Action("Error", "Shared"));
}
下一篇:PHP中单引号双引号使用原则
文章标题:ASP.NET MVC中错误处理方式
文章链接:http://soscw.com/index.php/essay/88160.html