MVC 实现自定义404错误页_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > MVC 实现自定义404错误页

MVC 实现自定义404错误页

 2017/11/10 3:23:41  Jichan·Jong  程序员俱乐部  我要评论(0)
  • 摘要:直接进入正题。在HomeController中有一个NotFound的Action方法。publicActionResultNotFound(){returnView();}ViewCode对应的视图@{Layout=null;}<!DOCTYPEhtml><html><head><metacharset="utf-8"/><metaname="viewport"content="width=device-width"/><
  • 标签:MVC 实现 自定义 错误

直接进入正题。

在HomeController中有一个NotFound的Action方法。

class="code_img_closed" src="/Upload/Images/2017111003/0015B68B3C38AA5B.gif" alt="">
public ActionResult NotFound()
{
    return View();
}
logs_code_collapse" style="font-size: 18px">View Code

对应的视图

@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>出错了</title>
</head>
<body>
    <div style="text-align:center;font-size:1.5em"> 
        为什么受伤的总是我 o(╥﹏╥)o
    </div>
</body>
</html>
View Code

在Global.asax.cs中定义的Application_Error方法,在方法中获取错误并判断是否是静态资源的404错误,如果不是,则使用自定义的错误页显示

private readonly string[] staticFileExt = new string[] { ".axd", ".ashx", ".bmp", ".css", ".gif", ".htm", ".html", ".ico", ".jpeg", ".jpg", ".js", ".png", ".rar", ".zip",".woff",".ttf" ,".eot",".svg"};
View Code
protected void Application_Error()
{
    var error = Server.GetLastError() as HttpException;
    if (error!= null && error.GetHttpCode() == 404)
    {
        if (!IsStaticResource(Request))
        {
            Response.Clear();
            Server.ClearError();
            Response.TrySkipIisCustomErrors = true;

            IController controller = new HomeController();

            var routeData = new RouteData();
            routeData.Values.Add("controller", "Home");
            routeData.Values.Add("action", "NotFound");

            controller.Execute(new RequestContext(new HttpContextWrapper(Context), routeData));
        }
    }
}

private bool IsStaticResource(HttpRequest request)
{
    string extension = VirtualPathUtility.GetExtension(request.Path);
    return staticFileExt.Contains(extension);
}
View Code

当前台访问存在的页面或资源时:

 

 

 

当访问不存在的非静态资源时,显示自定义错误页

 

 

当访问不存在的静态资源时:

 

 

发表评论
用户名: 匿名