最佳答案
我试图使一个自定义的 HTTP404错误页面时,有人键入一个 URL 它不会在 ASP.NET MVC 中调用有效的操作或控制器,而是显示通用的“ Resource Not Found”ASP.NET 错误。
I don't want to use the web.config to handle this.
有没有什么路由魔法可以让我捕捉到任何无效的 URL?
更新: 我尝试了给出的答案,但我还是得到了难看的“资源未找到”信息。
另一个更新: 好的,显然 RC1发生了一些变化。我甚至尝试过在 HttpException
上特别设置404,但它仍然只给我“资源未找到”的页面。
I've even used MvcContrib's resource's feature and nothing - same problem. Any ideas?