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文件中編寫上述代碼,可以在發生未處理異常時重定向到指定的錯誤頁面。