这两种获取当前asp.net请求异常的方法之间是否存在实际差异?
MSDN说HttpContent.Error返回第一个错误,而GetLastError()显然是最后一个错误,但我似乎没有任何区别使用.
解决方法
他们是一样的:
HttpContext.Error
返回第一个错误.
HttpContext.Server
返回一个HttpServerUtility类的实例,它为HttpContext提供了方便的包装器,包括
HttpContext.Server.GetLastError()
,它返回HttpContext.Error(使用Reflector验证).