首页 > Web开发 > 详细

asp.net 异常处理

时间:2017-11-20 19:59:41      阅读:238      评论:0      收藏:0      [点我收藏+]

protected void Application_EndRequest(object sender, EventArgs e)
{
// 在应用程序关闭时运行的代码

        HandlerError();
    }

    private void HandlerError()
    {            
        if (HttpContext.Current != null)
        {
            if (string.IsNullOrEmpty(Request.QueryString["error"]))
            {
                var server = HttpContext.Current.Server;
                var statusCode = HttpContext.Current.Response.StatusCode;

                Exception ex = server.GetLastError();

                if (ex != null || statusCode == 404 || statusCode == 500)
                {
                    server.ClearError();
                    Response.StatusCode = 404;
                    Response.Redirect("//www.baidu.cn/nopage.html");
                    Response.End();
                    if (ex != null)
                        DependencyResolver.Current.GetService<ILog>().Log(ex);
                }
            }
        }

    }

    protected void Application_Error(object sender, EventArgs e)
    {
        // 在出现未处理的错误时运行的代码
        HandlerError();
    }

asp.net 异常处理

原文:http://www.cnblogs.com/zhangrCsharp/p/7867876.html

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