在ASP.NET中,可以通过配置web.config文件中的
<configuration>
<system.web>
<customErrors mode="On" defaultRedirect="ErrorPage.html">
<error statusCode="404" redirect="NotFoundPage.html" />
<error statusCode="500" redirect="ServerErrorPage.html" />
</customErrors>
</system.web>
</configuration>
在上面的示例中,
在指定的错误页面文件中,可以自定义错误信息的显示内容,例如可以显示错误码、错误消息等信息,以便更好地提示用户发生了错误。