asp.net c#产品一个一个展示出来如何分页
答案:2 悬赏:10 手机版
解决时间 2021-04-07 02:17
- 提问者网友:骑士
- 2021-04-06 04:57
asp.net c#产品一个一个展示出来如何分页
最佳答案
- 五星知识达人网友:轻熟杀无赦
- 2021-04-06 06:36
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 + ""+i+"";
}
else
{
numberStr = numberStr + ""+i+"";
}
}
}
这也是我参考网上的
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 + ""+i+"";
}
else
{
numberStr = numberStr + ""+i+"";
}
}
}
这也是我参考网上的
全部回答
- 1楼网友:患得患失的劫
- 2021-04-06 06:54
千万级分页存储过程结合repeater+aspnetpager7.2实现
http://www.cnblogs.com/it560/archive/2009/11/30/1613410.html
代码很全,我自己写的,这里不方便贴代码,楼主就到我博客看吧!
我测试结果 ,2千万条数据,每页读20条记录,平均时间不到2秒!
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯