7.5.1.4 Displaying the Page Links; Listing 7-23 Calling the HTML Helper Method in the List.cshtml File

This commit is contained in:
Jason Zhu 2021-09-08 15:48:06 +10:00
parent 237a9f0aa8
commit 8d40247742

View File

@ -13,3 +13,7 @@
<h4>@p.Price.ToString("c")</h4>
</div>
}
<div>
@Html.PageLinks(Model.PagingInfo, x => Url.Action("List", new { page = x}))
</div>