Asp.net 全局错误处理
程序员文章站
2022-05-01 17:54:06
protected void Application_Error(object sender, EventArgs e)
...
protected void Application_Error(object sender, EventArgs e)
{
Exception ex = this.Server.GetLastError().GetBaseException();
if (ex is ArgumentErrorException)
{
return;
}
LogHelper.CurrentLogger.Error("出现未预计的异常", ex);
this.Response.Redirect("/Error.aspx");
}
上一篇: iOS 的ARM和X86
下一篇: 百度地图,高德地图,HTML5经纬度比较