摘要: 获取错误信息并到指定页面 不要使用Response.Redirect,而应该使用Server.Transfer e.g // in global.asax protected void Application_Error(Object sender, EventArgs e) { if (Server.GetLastError() is HttpUnhandledException) ... 阅读全文
posted @ 2009-03-19 11:50 空紫竹 阅读(299) 评论(0) 推荐(0)