Partial ViewView/Index.cshtml <html>
<body>
<table>
</table>
@Html.Partial("_Pager", Model.Pager)
</body>
</html>
View/Shared/_Pager.cshtml @model WebApplication1.Common.Pager
<ul class="pagination">
@foreach (var x in Model.Pages) {
<li>@x</li>
}
</ul>
|
|