asp.net c#产品一个一个展示出来如何分页
1个回答
展开全部
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>";
}
}
}
这也是我参考网上的
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>";
}
}
}
这也是我参考网上的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询