Fork me on GitHub

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

该方法用于生成Ajax分页导航元素。
公共重载列表:
名称说明
Pager(this AjaxHelper ajax, int totalItemCount, int pageSize, int pageIndex, PagerOptions pagerOptions, MvcAjaxOptions ajaxOptions) 根据总记录数、每页显示记录数、当前页索引、PagerOptions和MvcPagerOptions属性值生成Ajax分页导航元素。
Pager(this AjaxHelper ajax, IPagedList pagedList) 根据包含分页数据的IPagedList对象生成Ajax分页导航元素,使用此扩展方法时必须用AjaxOptions()方法设置MvcAjaxOptions。
Pager(this AjaxHelper ajax, IPagedList pagedList, PagerOptions pagerOptions) 根据包含分页数据的IPagedList对象和PagerOptions属性生成Ajax分页导航元素,使用此扩展方法时必须用AjaxOptions()方法设置MvcAjaxOptions。
Pager(this AjaxHelper ajax, IPagedList pagedList, PagerOptions pagerOptions, MvcAjaxOptions ajaxOptions) 根据包含分页数据的IPagedList对象、PagerOptions和MvcAjaxOptions生成Ajax分页导航元素。