首页 > 编程 > .NET > 正文

asp.net全局异常处理

2024-07-10 13:11:30
字体:
来源:转载
供稿:网友

给用户一个统一的处理异常的方法是如下
1。修改web.config
修改完成后代码如下
    <customerrors  mode="on"
 defaultredirect="webform2.aspx"
    />
 2。为全局响应,修改global.asax
   if (server.getlasterror() is exception)
   {
    server.transfer("webform2.aspx");
   }

3。代码中抛出异常
throw new exception();

相当的简单是吧



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表