如何知道哪个资源在我的 Application_Error 中抛出 HttpException
我的应用程序中通过 HttpException 引发了 Application_Error 事件。在异常中,我看到 404 错误代码 - 未找到资源。
我已经使用Firebug检查是否有一些带有404错误代码的image/css/js,但没有找到。
问题是:如何获取引发此错误的资源?
谢谢,
阿曼多
The Application_Error event is being raised in my application with a HttpException. Inside the exception I see a 404 error code - resource not found.
I've already used Firebug to check if there's some image/css/js with 404 error code and didn't found.
The question is: How can I get the resource that's firing this error?
Thanks,
Armando
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试检查
Global.asax
中Application_Error
中的Request.Url
。Try checking
Request.Url
inApplication_Error
inGlobal.asax
.