給使用者一個統一的處理異常的方法是如下
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();
相當的簡單是吧