0

因此,我将 global.asax Application_Error() 事件设置为处理错误,然后对自定义错误页面执行 Server.Transfer()。当抛出异常时,我可以通过 Application_Error 事件观察代码,然后进入我的自定义错误页面的 Page_Load() 事件,并在没有错误的情况下遍历所有代码;但是我的错误页面永远不会呈现。它只是停留在我所在的页面上,看起来什么也没发生。为什么我的错误页面没有呈现?下面是我的 Application_Error 事件以及错误页面的 Page_Load 事件的代码。

    protected void Application_Error(object sender, EventArgs e)
    {
        Exception ex = HttpContext.Current.Server.GetLastError();

        if (ex is HttpUnhandledException && ex.InnerException != null)
            ex = ex.InnerException;

        if (ex != null)
        {
            Guid errorID = Guid.NewGuid();
            log.Error(string.Format("=====WEBSITE ERROR===== Error ID: {0}", errorID), ex);
            Server.Transfer(string.Format("~/Pages/error.aspx?id={0}", errorID));
        }
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        string errorID = Request.QueryString["id"];
        Exception ex = HttpContext.Current.Server.GetLastError();
        if (ex is HttpUnhandledException && ex.InnerException != null)
            ex = ex.InnerException;

        lblErrorID.Text = errorID;

        if (ex != null)
        {
            lblErrorMessage.Text = ex.Message;
            lblStackTrace.Text = ex.StackTrace.Replace("\n", "<br/>");
            plcStackTrace.Visible = bool.Parse(System.Configuration.ConfigurationManager.AppSettings["displayStackTrace"]);
        }
        else
            plcErrorData.Visible = false;
    }

另外值得注意的是,我正在通过 Application_Start 事件和使用 RouteConfig 类进行自定义路由。这不应该影响这一点,因为我在另一个网站上做同样的事情,它就像一个魅力。

4

1 回答 1

0

处理异常后,您必须清除它。只需调用 Server.ClearError()

protected void Page_Load(object sender, EventArgs e)
{
    string errorID = Request.QueryString["id"];
    Exception ex = HttpContext.Current.Server.GetLastError();
    if (ex is HttpUnhandledException && ex.InnerException != null)
        ex = ex.InnerException;

     //This works  
     Server.ClearError();

    lblErrorID.Text = errorID;

    if (ex != null)
    {
        lblErrorMessage.Text = ex.Message;
        lblStackTrace.Text = ex.StackTrace.Replace("\n", "<br/>");
        plcStackTrace.Visible = bool.Parse(System.Configuration.ConfigurationManager.AppSettings["displayStackTrace"]);
    }
    else
        plcErrorData.Visible = false;
}
于 2014-03-13T16:52:41.947 回答