你的位置:首页 > 软件开发 > ASP.net > asp.net的快捷实用分页类

asp.net的快捷实用分页类

发布时间:2015-11-29 02:00:11
KeleyiPager分页类,可以于对列表页进行分页浏览,代码是从HoverTreeCMS项目中COPY的,感觉很不错,使用简单方便,但是功能强大。在线体验效果:http://cms.hovertree.com/源代码如下:/* HoverTreeCMS * */namespac ...

asp.net的快捷实用分页类

KeleyiPager分页类,可以于对列表页进行分页浏览,代码是从HoverTreeCMS项目中COPY的,感觉很不错,使用简单方便,但是功能强大。

在线体验效果:http://cms.hovertree.com/

源代码如下:

/* HoverTreeCMS * */namespace HoverTree.HoverTreeFrame.WebUI{  public class KeleyiPager  {      //代码是从开源项目HoverTreeCMS中获取的      //更多信息请参考:http://hovertree.com/menu/hovertreecms/    public static get='_blank'>string BuildPageIndex(int pageIndex, int totalPageCount)    {      return BuildPageIndex(pageIndex, totalPageCount, string.Empty);    }    public static string BuildPageIndex(int pageIndex, int totalPageCount, string moreParams)    { return BuildPageIndex(pageIndex, totalPageCount, moreParams, string.Empty); }    public static string BuildPageIndex(int pageIndex, int totalPageCount, string moreParams, string absoluteAddress)    {      if (pageIndex > totalPageCount) pageIndex = totalPageCount;      if (pageIndex < 1) pageIndex = 1;      string m_pageIndexInfo = pageIndex.ToString() + "/" + totalPageCount.ToString();      if (moreParams != string.Empty)        moreParams = "&" + moreParams;      if (pageIndex > 2)        m_pageIndexInfo = "<a href=\"" + absoluteAddress + "?pi=1" + moreParams + "\">第一页</a> <a href=\"" + absoluteAddress + "?pi=" + (pageIndex - 1).ToString() + "" + moreParams + "\">上一页</a> " + m_pageIndexInfo;      else if (pageIndex == 2)        m_pageIndexInfo = "<a href=\"" + absoluteAddress + "?pi=1" + moreParams + "\">第一页</a> " + m_pageIndexInfo;      if (pageIndex == totalPageCount - 1)        m_pageIndexInfo = m_pageIndexInfo + " <a href=\"" + absoluteAddress + "?pi=" + totalPageCount.ToString() + moreParams + "\">末页</a>";      else if (pageIndex < totalPageCount - 1)        m_pageIndexInfo = m_pageIndexInfo + " <a href=\"" + absoluteAddress + "?pi=" + (pageIndex + 1).ToString() + moreParams + "\">下一页</a> " + "<a href=\"" + absoluteAddress + "?pi=" + totalPageCount.ToString() + moreParams + "\">末页</a> ";      return m_pageIndexInfo;    }  }}

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:asp.net的快捷实用分页类

关键词:ASP.NET

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。