我已在Web配置中添加了CustomErrors,以处理404和403错误代码,这些错误代码将重定向到其特定页面。
<customErrors mode="On" defaultRedirect="~/Error/ErrorPage.aspx">
<error statusCode="403" redirect="~/Error/ErrorPage.aspx?id=404" />
</customErrors>
它很好用。
但是现在我想将所有错误代码重定向到单个页面。
有人可以帮忙吗?
我尝试了下面给出的标记,它似乎可以在本地使用,但不能在服务器IIS上使用。
<customErrors mode="On" defaultRedirect="~/Error/ErrorPage.aspx"></customErrors>