gpt4 book ai didi

asp.net - 我将使用什么事件来拦截和处理Webform页面中的所有运行时错误?

转载 作者:行者123 更新时间:2023-12-03 08:15:29 32 4
gpt4 key购买 nike

我将使用什么事件来拦截和处理Webform页面中的所有运行时错误?

另外,如果我使用属性e,我怎么知道拦截了什么异常。 ?

谢谢!!! <3

最佳答案

如果只想在单个页面中执行此操作,则可以覆盖Page_Error方法,就像执行Page_Load一样。

如果您想在整个应用程序中都这样做,那么我想您可能需要更改Global.asax:

    protected void Application_Error(Object sender, EventArgs e)
{
var ex = HttpContext.Current.Server.GetLastError();

//Handle your error as you wish
}

关于asp.net - 我将使用什么事件来拦截和处理Webform页面中的所有运行时错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10302623/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com