一、customErrors节点在web.config中的位置
configuration -> system.web -> customerErrors
二、customErrors节点常见用法
<configuration> <system.web> <customErrors defaultRedirect="defaultErrorURL" mode="RemoteOnly"> <error statusCode="500" redirect="500ErrorURL"/> <error statusCode="403" redirect="403URL" /> <error statusCode="404" redirect="404URL" /> </customErrors> </system.web> </configuration>
三、customErrors节点属性值介绍
1、defaultRedirect
(1)、可选的属性。
(2)、指定出错时将浏览器定向到的默认 URL。如果未指定该属性,则显示一般性错误。
(3)、URL 可以是绝对的(如 http://www.studyofnet.com/news/1328.html)或相对的。相对 URL是相对于为该属性指定 URL 的 Web.config 文件,而不是相对于发生错误的网页。以字符 (~) 开头的 URL(如 ~/news/1328.html)表示指定的 URL 是相对于应用程序的根路径。
2、mode (必选属性),值有如下三种
值 |
说明 |
On |
指定启用自定义错误。如果未指定 defaultRedirect,用户将看到一般性错误。 |
Off |
指定禁用自定义错误。这允许显示标准的详细错误。 |
RemoteOnly |
指定仅向远程客户端显示自定义错误并且向本地主机显示 ASP.NET 错误。这是默认值。 |
备注
在开发调试阶段为了便于查找错误Mode属性建议设置为Off,而在部署阶段应将Mode属性设置为On或者RemoteOnly,以避免这些详细的错误信息暴露了程序代码细节
文章转载自:web.config中customErrors节点的配置 http://www.studyofnet.com/news/1329.html