母版页中处理异常

发布于 2024-10-12 03:21:41 字数 42 浏览 0 评论 0原文

如果页面中抛出异常,是否可以在母版页中进行处理(假设之前没有处理过?)

If an exception was thrown in a page, would it be possible to be handled within the masterpage (assuming it wasn't handled before?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红玫瑰 2024-10-19 03:21:41

如果母版页上的某个方法是上面发生异常的调用链中的一个,则可以在其中捕获该方法。

你想实现什么目标?我猜测,您需要探索创建一个基页,在该基页中进行异常处理并从中继承其他页面。

If a method on the master page is one in the call chain above where the exception occurs, it can be caught in it.

What are you trying to accomplish? At a guess I would say that you need to explore the creation of a base page where you have your exception handling and inherit your other pages from it.

逆光飞翔i 2024-10-19 03:21:41

您可以向 Page.Error 事件添加处理程序:

protected void Master_Init() 
{
    Page.Error += MyErrorHandler;
}

我不确定 MasterPage 类中有 Master_Init 方法,但我相信,您有一个想法。

You could add handler to Page.Error event:

protected void Master_Init() 
{
    Page.Error += MyErrorHandler;
}

I am not sure, that there is Master_Init method in MasterPage class, but I believe, you got an idea.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文