在ASP.NET MVC中,可以通过在Web.config文件中的
例如,您可以将以下代码添加到Web.config文件中以启用自定义错误页面:
<system.web>
<customErrors mode="On" defaultRedirect="~/Error">
<error statusCode="404" redirect="~/NotFound"/>
</customErrors>
</system.web>
在上面的示例中,
另外,您也可以在Global.asax.cs文件中的Application_Error方法中处理全局错误,例如:
protected void Application_Error()
{
var exception = Server.GetLastError();
//处理异常,并重定向到自定义错误页面
Response.Redirect("/Error");
}
通过以上方法,您可以在ASP.NET MVC中设置自定义错误页面来提供更好的用户体验。