服务器之家

服务器之家 > 正文

asp.net 分页链接方法

时间:2019-08-30 09:22     来源/作者:脚本之家

代码如下:


/// <summary> 
/// 分页链接 
/// </summary> 
/// <param name="pageSize"></param> 
/// <param name="recordCount"></param> 
/// <param name="currentPage"></param> 
/// <param name="prev">当前页前面显示的数量</param> 
/// <param name="next">当前页后面显示的数量</param> 
/// <returns></returns> 
public string PageLink(int pageSize, int recordCount, int currentPage, int prev, int next) 

int pageCount = recordCount % pageSize == 0 ? (recordCount / pageSize) : ((int)Math.Ceiling((double)recordCount / pageSize)); 
StringBuilder sb = new StringBuilder(); 
if (currentPage > 1 && recordCount > 1) 

sb.Append("<a href=\"?page="); 
sb.Append((currentPage - 1).ToString()); 
sb.Append("\">前一页</a>  "); 

if (currentPage > prev + 1) 
sb.Append("<a href=\"?page=1\">1</a> ... "); 
if (currentPage < prev) 
next = next + prev - currentPage + 1; 
if (next > pageCount - currentPage) 
prev = prev + next - (pageCount - currentPage); 
for (int i = 1; i <= pageCount; i++) 

if (i == currentPage) 

sb.Append("<a href=\"?page=" + i + "\" class=\"current\" ><font color=\"red\">" + i + "</font></a>  "); 

else 

if (i > (currentPage - prev - 1) && i < (currentPage + next + 1)) 

sb.Append("<a href=\"?page=" + i + "\">" + i + "</a>  "); 



if (currentPage < pageCount - next) 
sb.Append("... <a href=\"?page=" + pageCount.ToString() + "\">" + pageCount.ToString() + "</a>"); 
if (currentPage < pageCount) 
sb.Append("  <a href=\"?page=" + (currentPage + 1).ToString() + "\">后一页</a>"); 
return sb.ToString(); 

 

 

 

标签:

相关文章

热门资讯

华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部