我已经在 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")
)附加当前页面的页码。
知道怎么做吗?如果可以的话,一个简短的解释以及一个答案将是最受欢迎的。