zoukankan      html  css  js  c++  java
  • PagedList 分页

    @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();
            }

    效果截图

  • 相关阅读:
    在Ubuntu-20.04上安装Emacs-27.1
    VSCode 配置 C++ 与 python 编译环境
    cf 1557(div2)
    2021牛客暑期多校训练营8
    2021牛客暑期多校训练营7
    2021暑期cf加训3
    2021牛客暑期多校训练营6
    2021牛客暑期多校训练营5
    3ds Max基本操作
    renren-generator快速生成你搬砖需要的CRUD代码的框架
  • 原文地址:https://www.cnblogs.com/sumg/p/3649429.html
Copyright © 2011-2022 走看看