在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>
在上面的示例中,
在指定的錯誤頁面文件中,可以自定義錯誤信息的顯示內容,例如可以顯示錯誤碼、錯誤消息等信息,以便更好地提示用戶發生了錯誤。