Sun_china

交流更多,收获更多?

博客园 首页 新随笔 联系 订阅 管理
不要使用Response.Redirect,而应该使用Server.Transfer
e.g
// in global.asax
protected void Application_Error(Object sender, EventArgs e) {
if (Server.GetLastError() is HttpUnhandledException)
Server.Transfer("MyErrorPage.aspx");

//其余的非HttpUnhandledException异常交给ASP.NET自己处理就okay了 :)
}

posted on 2007-04-27 11:18  Sun_china  阅读(257)  评论(0编辑  收藏  举报