标签: asp.net error-handling webforms
在Application_Error事件中,我通过以下方式得到最后一个错误:
Exception lastError = Context.Server.GetLastError();
始终产生相同的错误:Exception of type 'System.Web.HttpUnhandledException' was thrown.
Exception of type 'System.Web.HttpUnhandledException' was thrown.
如何解决发生的实际错误?
答案 0 :(得分:3)