Example #1
0
 public static HtmlString PageHelper(this HtmlHelper html, PagerInfo pager)
 {
     return(new HtmlString(PagerHelper.Pageer(pager.CurrentPageIndex, pager.PageSize, pager.TotalCount)));
 }
Example #2
0
 public static HtmlString PageHelper(this HtmlHelper html, int currentPage, int pageSize, int totalCount)
 {
     return(new HtmlString(PagerHelper.Pageer(currentPage, pageSize, totalCount)));
 }