阅读量:2
customErrors是ASP.NET中用于自定义错误页面的配置选项,以下是配置customErrors的方法:
- 在web.config文件中配置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可以指定特定状态码对应的错误页面。
- 使用代码配置customErrors:
void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError(); Server.ClearError(); Response.Redirect("error.html"); }
在Global.asax.cs文件中编写上述代码,可以在发生未处理异常时重定向到指定的错误页面。
- 使用IIS管理工具配置customErrors: 在IIS管理工具中,可以直接在网站或应用程序的配置中设置customErrors选项,来指定错误页面。