asp.net 分页链接方法

asp.net 分页链接方法,需要的朋友可以参考下。

复制代码 代码如下:


/// <summary>
/// 分页链接
/// </summary>
/// <param></param>
/// <param></param>
/// <param></param>
/// <param>当前页前面显示的数量</param>
/// <param>当前页后面显示的数量</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=https://www.jb51.net/article/\"?page=");
sb.Append((currentPage - 1).ToString());
sb.Append("https://www.jb51.net/article/\">前一页</a>&nbsp;&nbsp;");
}
if (currentPage > prev + 1)
sb.Append("<a href=https://www.jb51.net/article/\"?page=1\">1</a>&nbsp;...&nbsp;");
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=https://www.jb51.net/article/\"?page=" + i + "https://www.jb51.net/article/\" class=https://www.jb51.net/article/\"current\" ><font color=https://www.jb51.net/article/\"red\">" + i + "</font></a>&nbsp;&nbsp;");
}
else
{
if (i > (currentPage - prev - 1) && i < (currentPage + next + 1))
{
sb.Append("<a href=https://www.jb51.net/article/\"?page=" + i + "https://www.jb51.net/article/\">" + i + "</a>&nbsp;&nbsp;");
}
}
}
if (currentPage < pageCount - next)
sb.Append("...&nbsp;<a href=https://www.jb51.net/article/\"?page=" + pageCount.ToString() + "https://www.jb51.net/article/\">" + pageCount.ToString() + "</a>");
if (currentPage < pageCount)
sb.Append("&nbsp;&nbsp;<a href=https://www.jb51.net/article/\"?page=" + (currentPage + 1).ToString() + "https://www.jb51.net/article/\">后一页</a>");
return sb.ToString();
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjjffp.html