0

我的意图是在捕获到异常时记录错误(我正在使用 Log4Net)并重定向到带有一些错误消息的漂亮页面。我有一个返回类型 T 对象的类,主要是一个数据集。

在我的 Catch 声明中,我写了这个,它有效,但我不确定是否有更合适的处理方式,有人可以请教。谢谢。请注意,throw 不能省略,因为该类具有返回类型。:

      catch (Exception ex)
        {
            log.Error(ex);
            HttpContext.Current.Response.Redirect("~/errorPage.aspx");
            throw ex;
        }
4

1 回答 1

2

这取决于您希望如何处理页面上的错误,一般来说,未处理的异常应该冒泡到 gloabl.asax 文件中的 application_error 到它的泛型。这是处理此错误的一种简单方法。

void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
// Get the exception object.
Exception exc = Server.GetLastError();

// Handle HTTP errors
if (exc.GetType() == typeof(HttpException))
{
// The Complete Error Handling Example generates
// some errors using URLs with "NoCatch" in them;
// ignore these here to simulate what would happen
// if a global.asax handler were not implemented.
  if (exc.Message.Contains("NoCatch") || exc.Message.Contains("maxUrlLength"))
  return;

//Redirect HTTP errors to HttpError page
  Server.Transfer("HttpErrorPage.aspx");
}

  // For other kinds of errors give the user some information
 // but stay on the default page
  Response.Write("<h2>Global Page Error</h2>\n");
 Response.Write(
  "<p>" + exc.Message + "</p>\n");
  Response.Write("Return to the <a href='Default.aspx'>" +
  "Default Page</a>\n");

 // Log the exception and notify system operators
 ExceptionUtility.LogException(exc, "DefaultPage");
 ExceptionUtility.NotifySystemOps(exc);

 // Clear the error from the server
 Server.ClearError();
}
于 2012-12-31T06:40:55.110 回答