• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NET MVC3 Custom ErrorPages 500/404

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Global.aspx.cs

  1. public static void RegisterGlobalFilters(GlobalFilterCollection filters)  
  2. {  
  3.     filters.Add(new CustomHandlerErrorAttribute());  
  4. }  


CustomHandlerErrorAttribute.cs

  1. public class CustomHandlerErrorAttribute : HandleErrorAttribute  
  2. {  
  3.     public override void OnException(ExceptionContext filterContext)  
  4.     {  
  5.         if (filterContext.ExceptionHandled)  
  6.         {  
  7.             return;  
  8.         }  
  9.   
  10.         filterContext.Controller.ViewData.Model = filterContext.Exception;  
  11.   
  12.         filterContext.Result = new ViewResult   
  13.         {   
  14.             ViewName = "Error",   
  15.             ViewData = filterContext.Controller.ViewData   
  16.         };  
  17.   
  18.         filterContext.ExceptionHandled = true;  
  19.     }  
  20. }  


web.config <system.web>

  1. <customErrors mode="On">  
  2.   <error redirect="/home/error" statusCode="404" />  
  3. </customErrors>  

web.config  <system.webServer>

  1. <httpErrors errorMode="Custom" existingResponse="PassThrough">  
  2. </httpErrors>  

Error.cshtml

  1. <div class="box">  
  2.     @{  
  3.         
  4.         var exception = ViewData.Model;  
  5.         var statusCode = exception == null ? 404 : 500;  
  6.         Response.StatusCode = statusCode;  
  7.         if (statusCode == 404)  
  8.         {  
  9.             <h3>404 Page not found!</h3>  
  10.             <p>没有找到该网页!</p>  
  11.         }  
  12.         else if (statusCode == 500)  
  13.         {  
  14.             <h3>500 程序异常</h3>  
  15.             <p>@exception.Message</p>  
  16.         }  
  17.     }  
  18.     <p style="font-size: 12px; color: Gray">请使用浏览器的后退功能已保证您填写的数据没有丢失!</p>  
  19. </div>  

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NetCoreWebApi使用IdentityServer4最新版踩坑记录发布时间:2022-07-10
下一篇:
ASP.NETWEB验证码控件【转载】发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap