用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > Net教程

asp.net 分页链接方法

时间:2015-01-29  来源:互联网  作者:佚名
复制代码 代码如下:
/// <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();
}
来顶一下
返回首页
返回首页
推荐资讯
asp.net Web Service 接口大量数据传输解决方案 asp.net Web Service 接口大量数据具体请看下面的流程图及其说明 1,流程图2,流程说明:线程1
C#通过POP3获取邮件的代码(正文和附件) C#通过POP3获取邮件的代码(正文和附使用方法: 获取第1封邮件 复制代码 代码如下: Zgke.Net.POP3
相关文章
栏目更新
栏目热门