之前做项目的时候都是在每个页面中处理这不同的异常信息,一个页面数下来,很多个try{}catch{}语句块,令整个代码结构有些不够美观。
今天看到一篇帖子,是关于利用全局应用程序类来帮忙获取异常信息,利用 server.Transfer('''')指定接受错误的页面;加上在接受错误页面中利用 server.GetLastError() 获取前一个异常源。
Global.asax 中的Application_Error 函数如下:
[c-sharp] view plain copy print ?
- protected void Application_Error(object sender, EventArgs e)
- {
-
- try
- {
- Server.Transfer("~/Error.aspx");
- }
- catch { }
- }
<textarea style="DISPLAY: none" class="c-sharp" rows="15" cols="50" name="code"> protected void Application_Error(object sender, EventArgs e) { //捕获整个解决方案下的所有异常 try { Server.Transfer("~/Error.aspx"); } catch { } }</textarea>
错误接受页面 Error.aspx 获取异常信息的相关代码如下:
[c-sharp] view plain copy print ?
- Exception ex = Server.GetLastError().GetBaseException();
- if (ex != null)
- {
- Response.Write(ex.Message);
- }
-
- Server.ClearError();
<textarea style="DISPLAY: none" class="c-sharp" rows="15" cols="50" name="code"> Exception ex = Server.GetLastError().GetBaseException(); //获取异常源 if (ex != null) { Response.Write(ex.Message); } //清空前一个异常 Server.ClearError();</textarea>
测试页面Text.aspx中的测试异常代码如下:
[c-sharp] view plain copy print ?
-
-
-
-
-
-
- string Name = "aganar";
-
- int UID = Convert.ToInt32(Name);
<textarea style="DISPLAY: none" class="c-sharp" rows="15" cols="50" name="code"> //测试是否捕获了异常信息 //test1 //int UserID = Convert.ToInt32(Request["UserID"].ToString()); //test2 string Name = "aganar"; int UID = Convert.ToInt32(Name);</textarea>
运行Test.aspx页面,我们会看到相关的异常信息,我们能够清晰地看出,在页面Test.aspx页面中未曾有任何一个try{}catch{}语句块存在,我们即可很方便轻松地捕获到异常信息。