在Application_Error事件中,我通过以下方式得到了最后一个错误:
Exception lastError = Context.Server.GetLastError();
总是产生相同的错误:
Exception of type 'System.Web.HttpUnhandledException' was thrown.
我如何得知实际发生的错误?
最佳答案
Exception objErr = Server.GetLastError().GetBaseException();
另请阅读此完整引用:ojita关于asp.net - 如何在Global.asax中正确捕获Web应用程序错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7222635/