Example #1
0
 public static string GetPageStrPro(string url, int pageSize, int currentPage, int count, int pageshow)
 {
     PagingHelper ph = new PagingHelper(pageSize, currentPage, count,pageshow);
     return ph.GetPageStringPro(url,false);
 }
Example #2
0
 public static string GetPageStr(int pageSize,int currentPage,int count) {
     PagingHelper ph = new PagingHelper(pageSize, currentPage, count);
     return ph.GetPageString();
 }