ASP.Net MVC路线映射

前端之家收集整理的这篇文章主要介绍了ASP.Net MVC路线映射前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是MVC(和ASP.Net路由)的新手.我正在尝试将* .aspx映射到名为PageController的控制器.
routes.MapRoute(
   "Page","{name}.aspx",new { controller = "Page",action = "Index",id = "" }
);

上面的代码不会映射* .aspx到PageController?当我运行它并键入任何.aspx页面,我得到以下错误

The controller for path ‘/Page.aspx’ could not be found or it does not implement the IController interface.
Parameter name: controllerType

有没有什么我不在这里?

解决方法

I just answered my own question. I had
the routes backwards (Default was
above page).

是的,您必须将所有自定义路由放在默认路由之上.

So this brings up the next question…
how does the “Default” route match (I
assume they use regular expressions
here) the “Page” route?

默认路由根据我们称之为“公约配置”的规则进行匹配. Scott Guthrie在他的第一篇关于ASP.NET MVC的博文中解释得很好.我建议你阅读它和他的其他职位.请记住,这些是基于第一个CTP发布的,框架已经改变了.您也可以在Scott Hanselman的asp.net网站上找到ASP.NET MVC上的web cast.

> http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx
> http://www.asp.net/MVC/

原文链接:https://www.f2er.com/aspnet/250298.html

猜你在找的asp.Net相关文章