MVC 全局异常过滤器HandleErrorAttribute
2020-12-13 06:11
标签:class c ext a string html using System; namespace 过滤器.Filtes MVC 全局异常过滤器HandleErrorAttribute,搜素材,soscw.com MVC 全局异常过滤器HandleErrorAttribute 标签:class c ext a string html 原文地址:http://www.cnblogs.com/sumg/p/3744059.html
using System.Collections.Generic;
using
System.Linq;
using System.Web;
using System.Web.Mvc;
{
///
///
全局异常过滤器
///
public class
MyHandleErrorAttribute:HandleErrorAttribute
{
public override
void OnException(ExceptionContext filterContext)
{
string errorMsg=
filterContext.Exception.Message;//获取异常信息
//记日志
//重定向友好页面
filterContext.Result
= new RedirectResult("~/Error.html");
filterContext.ExceptionHandled = true;//标记异常已经处理,其它地方就不会再处理
//
base.OnException(filterContext);
}
}
}
文章标题:MVC 全局异常过滤器HandleErrorAttribute
文章链接:http://soscw.com/essay/32655.html