Fork me on GitHub

MvcPager帮助文档 - HtmlHelper.Pager 扩展方法

该方法用于生成Html分页导航元素。
公共重载列表:
名称说明
Pager(this HtmlHelper helper, int totalItemCount, int pageSize, int pageIndex) 根据总记录数、每页显示记录数、当前页索引生成分页导航元素。
Pager(this HtmlHelper helper, int totalItemCount, int pageSize, int pageIndex, PagerOptions pagerOptions) 根据总记录数、每页显示记录数、当前页索引和PagerOptions生成分页导航元素。
Pager(this HtmlHelper helper, IPagedList pagedList) 根据包含分页数据的IPagedList对象生成分页导航元素。
Pager(this HtmlHelper helper, IPagedList pagedList, PagerOptions pagerOptions) 根据包含分页数据的IPagedList对象和PagerOptions生成分页导航元素。