MVC 全局异常过滤器HandleErrorAttribute

2020-12-13 06:11

阅读:384

标签:class   c   ext   a   string   html   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace 过滤器.Filtes
{
///


/// 全局异常过滤器
///

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,搜素材,soscw.com

MVC 全局异常过滤器HandleErrorAttribute

标签:class   c   ext   a   string   html   

原文地址:http://www.cnblogs.com/sumg/p/3744059.html


评论


亲,登录后才可以留言!