我在为asp.net设置默认重定向和自定义错误页面时遇到问题。 我只想在发生错误时显示错误页面。但是,它总是会被定向到defaultDocument,即使我删除了defaultDocument块。
非常感谢任何见解。
我的web.config如下:
<system.web>
<customErrors mode="On"
defaultRedirect="~/Common/Error.aspx" />
....
</system.web>
....
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="~/Account/Login.aspx" />
</files>
</defaultDocument>
</system.webServer>