2
アクションメソッドの入力に問題があります。MVC入力アクションメソッド
私はこのコードを持っている:
public ViewResult List(int page_number = 1) {
ProductsListViewModel model = new ProductsListViewModel {
Products = repository.Products
.OrderBy(m => m.ProductID).Skip((page_number - 1) * PageSize)
.Take(PageSize),
PagingInfo = new PagingInfo {
CurrentPage = page_number,
ItemsPerPage = PageSize,
TotalItems = repository.Products.Count()
}
};
return View(model);
}
を、私はこのルートの設定を持っている:http://localhost/Page2
またはhttp://localhost/Page3
page_number
の値は常に1
です:
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: null,
url: "Page{page}",
defaults: new { Controller = "Product", action = "List" }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Product", action = "List", id = UrlParameter.Optional }
);
}
私はURLを入力し
。 なぜですか?