asp.net c#产品一个一个展示出来如何分页

 我来答
你猜我猜哇擦猜
推荐于2016-06-09 · TA获得超过2.8万个赞
知道大有可为答主
回答量:2万
采纳率:0%
帮助的人:6709万
展开全部
public static int pages; //总的页数
public static int pagecout; //总的记录条数
public static int currentpage; //当前页
public static int cout=10; //每页要显示的条数
public static int showpage=5; //数字导航条要显示页码的个数

//计算总页数
if (pagecout % cout == 0)
{
pages = pagecout / cout;
}
else
{
pages = pagecout / cout + 1;
}
//自动适应分页范围
//注意,这段代码就是你要的
int min;//要显示的页面数最小值

int max;//要显示的页面数最大值

if (currentpage > pages)//当前页必须小于最大页
{
currentpage = pages;
}

if (currentpage % showpage == 0) //如果恰好整除
{
min = currentpage + 1;
max = currentpage + showpage;
}
else if (currentpage % showpage == 1 && currentpage > showpage)
{
min = (((int)currentpage / showpage) - 1) * showpage + 1;
max = currentpage - 1;
}
else
{
min = ((int)currentpage / showpage) * showpage + 1;
max = (((int)currentpage / showpage) + 1) * showpage;
}

string numberStr = "";
//循环组装页码html。这一段你自由发挥
for (int i = min; i <= max; i++)
{
if (i <= pages)//只有不大于最大页才显示
{
if (currentpage == i)
{
//如果是当前页高亮
numberStr = numberStr + "<a><b>"+i+"</b></a>";
}
else
{
numberStr = numberStr + "<a>"+i+"</a>";
}
}
}

这也是我参考网上的
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式