首页 > Web开发 > 详细

MVC的Filters(拦截过滤)的Error页面

时间:2015-06-25 20:57:50      阅读:190      评论:0      收藏:0      [点我收藏+]

报错拦截过滤到error页面

    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
    public class ExceptionAttribute : FilterAttribute, IExceptionFilter
    {
        /*报错回到报错页Error*/
        /*
         *CreateTime:2013‎年‎3‎月‎18‎日
         */
        public void OnException(ExceptionContext filterContext)
        {
            //报错回到报错页
            string message = string.Format("消息类型:{0}<br>消息内容:{1}<br>引发异常的方法:{2}<br>引发异常源:{3}"
                , filterContext.Exception.GetType().Name
                , filterContext.Exception.Message
                 , filterContext.Exception.TargetSite
                 , filterContext.Exception.Source + filterContext.Exception.StackTrace
                 );
            filterContext.Controller.ViewData["ErrorMessage"] = message;//filterContext.Exception.Message + " 亲!您犯错了哦!";//得到报错的内容
            filterContext.Result = new ViewResult()//new一个url为Error视图
            {
                ViewName = "Error",/*在Shard文件夹下的Error.cshtml*/
                ViewData = filterContext.Controller.ViewData//view视图的属性中的viewdata被赋值
            };

            filterContext.ExceptionHandled = true;
        }

    }

 

MVC的Filters(拦截过滤)的Error页面

原文:http://www.cnblogs.com/RainbowInTheSky/p/4600827.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!