Heim >Web-Frontend >HTML-Tutorial >Web站点错误提示页面和默认访问页面设置_html/css_WEB-ITnose
1、asp.net 定制简单的错误处理页面
通常web应用程序在发布后,为了给用户一个友好界面和使用体验,都会在错误发生时跳转至一个自定义的错误页面,而不是asp.net向用户暴露出来的详细的异常列表。
简单的错误处理页面可以通过web.config来设置
<configuration> <system.web><customerrors mode="RemoteOnly" defaultredirect="GenericErrorPage.htm"> <error statuscode="403" redirect="NoAccess.htm"></error> <error statuscode="404" redirect="FileNotFound.htm"></error> </customerrors></system.web></configuration>
void Application_Error(object sender, EventArgs e) { Exception objErr = Server.GetLastError().GetBaseException(); string error = "发生异常页: " + Request.Url.ToString() + "<br>"; error += "异常信息: " + objErr.Message + "<br>"; Server.ClearError(); Application["error"] = error; Response.Redirect("~/ErrorPage/ErrorPage.aspx"); }
<system.webserver> <defaultdocument> <files> <clear></clear> <add value="default.aspx"></add> <add value="index.htm"></add> <add value="index.html"></add> <add value="index.aspx"></add> <add value="Default.htm"></add> <add value="Default.asp"></add> <add value="iisstart.htm"></add> </files> </defaultdocument> </system.webserver>