customErrors是ASP.NET中用于自定义错误页面的配置选项,以下是配置customErrors的方法:
<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="error.html">
<error statusCode="404" redirect="404.html"/>
</customErrors>
</system.web>
</configuration>
在上面的示例中,配置了customErrors的mode为"On",表示启用自定义错误页面功能。defaultRedirect指定了默认的错误页面,statusCode和redirect可以指定特定状态码对应的错误页面。
void Application_Error(object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
Server.ClearError();
Response.Redirect("error.html");
}
在Global.asax.cs文件中编写上述代码,可以在发生未处理异常时重定向到指定的错误页面。