·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP.NET网站开发 >> PagedList分页

PagedList分页

作者:佚名      ASP.NET网站开发编辑:admin      更新时间:2022-07-23

@using PagedList.Mvc;
@model PagedList.ipagedList<MvcapplicationBootStramp.Models.Person>

@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    
    <link href="~/Content/PagedList.CSS" rel="stylesheet" />//记得引用这个css文件
</head>
<body>
    <table>
        <tr>
            <th>ID
            </th>
            <th>姓名
            </th>
            <th>地址
            </th>
        </tr>
        @foreach (var item in Model)
        {
            <tr>
                <td>
                    @Html.DisplayFor(modelItem => item.Id)
                </td>
                <td>
                    @Html.DisplayFor(modelItem => item.Name)
                </td>
                <td>
                    @Html.DisplayFor(modelItem => item.Address)
                </td>
            </tr>
        }
    </table>
    
       @Html.PagedListPager(Model, page => Url.Action("Index", new { page }), new PagedListRenderOptions() { LinkToFirstPageFormat = "首页", LinkToNextPageFormat = "下一页", LinkToPReviousPageFormat = "上一页", LinkToLastPageFormat = "末页",DisplayItemSliceAndTotal=true, ItemSliceAndTotalFormat="共有{2}页", MaximumPageNumbersToDisplay=6})  //{2}占位符
   
</body>
</html>

 

  // GET: /Person/
        PersonDAL person = new PersonDAL();
        public ActionResult Index(int page = 1)
        {
           
            return View(person.GetPersons().ToPagedList(page, 5));
           // return View();
        }

效果截图