捕捉Web页面子类错误堆栈中的信息
重新System.Web.UI.Page的OnError事件,如下,可以捕获子页面StackTrace中的详细错误信息,包括错误原因,错误代码页面及错误代码位置,用来记录系统级出错日志非常不错~
protected override void OnError(EventArgs e)
{
System.Web.Caching.Cache _CA = HttpContext.Current.Cache;
string mm = System.Web.HttpContext.Current.Error.StackTrace;
base.OnError (e);
}
{
System.Web.Caching.Cache _CA = HttpContext.Current.Cache;
string mm = System.Web.HttpContext.Current.Error.StackTrace;
base.OnError (e);
}