我有一个页面。我需要捕获由于超时而抛出的异常..
是否存在类似System.Applicationexception
的异常消息答案 0 :(得分:2)
您可以在Global.asax.cs中使用Application_Error事件:
protected void Application_Error(object sender, EventArgs e)
{
var exception = Server.GetLastError();
LogException(exception);
}
在捕获记录此异常后,甚至邮寄它:)