我可以在遇到 SQL 超时的页面上显示来自 Global.asax 的警报吗?
在Global.asax中,有没有一种方法可以优雅地处理SQL超时,并在请求页面上显示一条消息来解释错误?我知道 Global.asax 有 Application_Error 和 Error 事件,但我不确定可以使用哪个(如果有)来完成此操作。
相关的是,我可以访问引发 Global.asax 正在处理的错误的页面实例吗?
谢谢!
In Global.asax, is there a way to handle SQL Timeouts elegantly, and display a message on the requesting page explaining the error? I know Global.asax has the Application_Error and Error events, but I'm not sure which (if any) I could use to accomplish this.
Related, can I access the page instance which raised the error that Global.asax is handling?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 global.asax.vb 中
在 C# 中
In global.asax.vb
In C#
您可以使用 web.config 自定义错误如此处所述
You could use the web.config custom errors as explained here