0

我已经在 ASP.Net MVC 中看到了分页和路由,但我无法让它为我工作。

在我的主页上,我想为我的分页生成以下漂亮的 url:

http://mysite
http://mysite/2
http://mysite/3 

如果没有路由,寻呼机生成的默认 url 将是:

http://mysite/?page=1
http://mysite/?page=2
http://mysite/?page=3 

到目前为止,我的 RouteCollection 是:

public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
    "HomePaging",
    "{page}",
    new { controller = "Home", action = "Index" },
    new { page = @"\d+" },
    new[] { "MySite.Controllers" });

routes.MapRoute(
    "HomePagingFirst",
    "{controller}",
    new { controller = "Home", action = "Index", page = 1 },
    new[] { "MySite.Controllers" });

routes.MapRoute(
    "Default",
    "{controller}/{action}/{id}",
    new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    new[] { "MySite.Controllers" });

}

这将生成以下路线:

http://mysite/1
http://mysite/2
http://mysite/3 

这不仅会为第一页生成非规范路由,还会导致生成的所有链接(如下所示@Html.ActionLink("my site", "Index", "Home"))附加当前页面的页码。

知道怎么做吗?如果可以的话,一个简短的解释以及一个答案将是最受欢迎的。

4

1 回答 1

0

我最终让它像这样工作。但老实说,这是通过反复试验。如果有人能解释它为什么会起作用,我相信这对访问者会很有帮助。

routes.MapRouteLowercase(
    "HomePaging",
    "{controller}",
    new { controller = "Home", action = "Index", page = UrlParameter.Optional },
    new { page = @"\d+" },
    new[] { "MySite.Controllers" });

routes.MapRouteLowercase(
    "HomeFirstPage", // Route name
    "{page}", // URL with parameters
    new { controller = "Home", action = "Index", page = 1 },
    new { page = @"\d+" },
    new[] { "MySite.Controllers" }); 
于 2013-01-21T23:26:02.020 回答