ASP.NET MVC:将任何错误请求路由到我的自定义页面

发布于 2024-11-06 07:28:05 字数 219 浏览 0 评论 0原文

在 ASP.NET MVC 中,我需要将任何错误请求路由到我的自定义页面,我可以使用这种方式吗?

routes.MapRoute(
"Default", // Route name
"{*pathInfo}", 
new { controller = "Home", action = "NotFound" } 
);

还有,有没有更好的方法来实现这一点?

In ASP.NET MVC, I need to route any error requests to my custom page, can I use this way?

routes.MapRoute(
"Default", // Route name
"{*pathInfo}", 
new { controller = "Home", action = "NotFound" } 
);

And, are there any better way to implement this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌伤浅笑 2024-11-13 07:28:05

在 global.asax 中:

  public static void RegisterGlobalFilters(GlobalFilterCollection filters)
  {
        filters.Add(new HandleErrorAttribute() { View = "YourView" });
  }

In the global.asax:

  public static void RegisterGlobalFilters(GlobalFilterCollection filters)
  {
        filters.Add(new HandleErrorAttribute() { View = "YourView" });
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文