1
我有項目,地圖路線(這是所有):更改名稱
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Product", action = "List", id = UrlParameter.Optional }
);
,我在控制有方法:
public ViewResult List(int id = 1)
{
...
}
和List.cshtml:
@Html.ActionLink(i.ToString(), "List", "Product", new { id = i }, null)
但我想更改id到頁面,但不會更改它在RouteConfig.cs
,我認爲這是一些可以配置我的行動路線的屬性。我希望這個解決方案:
@Html.ActionLink(i.ToString(), "List", "Product", new { page = i }, null)
和