如何修改原始的.net框架错误页面?

时间:2015-02-25 07:24:12

标签: asp.net exception custom-error-pages

我想更改IIS上所有网站的错误页面。

如何一次修改所有这些原始.net框架错误页面?

Error Page

1 个答案:

答案 0 :(得分:0)

<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>