asp.net – HttpContext.Error vs HttpContext.Server.GetLastError()

前端之家收集整理的这篇文章主要介绍了asp.net – HttpContext.Error vs HttpContext.Server.GetLastError()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这两种获取当前asp.net请求异常的方法之间是否存在实际差异?

MSDN说HttpContent.Error返回第一个错误,而GetLastError()显然是最后一个错误,但我似乎没有任何区别使用.

哪个是用于错误记录的大炮方法

解决方法

他们是一样的:

HttpContext.Error返回第一个错误.

HttpContext.Server返回一个HttpServerUtility类的实例,它为HttpContext提供了方便的包装器,包括

HttpContext.Server.GetLastError(),它返回HttpContext.Error(使用Reflector验证).

原文链接:https://www.f2er.com/aspnet/249025.html

猜你在找的asp.Net相关文章