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); }
public static string GetPageStr(int pageSize,int currentPage,int count) { PagingHelper ph = new PagingHelper(pageSize, currentPage, count); return ph.GetPageString(); }