栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

asp.net 分页链接方法

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

asp.net 分页链接方法

复制代码 代码如下:
///
/// 分页链接
///

///
///
///
/// 当前页前面显示的数量
/// 当前页后面显示的数量
///
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("sb.Append((currentPage - 1).ToString());
sb.Append("">前一页  ");
}
if (currentPage > prev + 1)
sb.Append("1 ... ");
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("" + i + "  ");
}
else
{
if (i > (currentPage - prev - 1) && i < (currentPage + next + 1))
{
sb.Append("" + i + "  ");
}
}
}
if (currentPage < pageCount - next)
sb.Append("... " + pageCount.ToString() + "");
if (currentPage < pageCount)
sb.Append("  后一页");
return sb.ToString();
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/58795.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号