C#自定义分页方法一


说到分页,大多数人都是想到的数据库分页,当然那个是开发必备的知识。但是现在我要给大家介绍的是自己写个页面的分页方法,就是平时看到的列表页的“上一页”,“下一页”

等。很久以前自己都是用的分页控件完成分页,但是很多时候,发现它并不能满足一些功能的时候,就得自己写了。废话不说了,上代码!

 1 static string First = "<li class=\"pagesdiv_first\"><a href=\"{0}\"></a></li>";//第一页
 2         static string FirstNo = "<li class=\"pagesdiv_first\"><a href=\"javascript:void(0)\"></a></li>";
 3         static string Previous = "<li class=\"pagesdiv_pre\"><a href=\"{0}\"></a></li>";//上一页
 4         static string PreviousNo = "<li class=\"pagesdiv_pre\"><a href=\"javascript:void(0)\"></a></li>";
 5         static string Middle = "<li class=\"pagesdiv_com\"><a href=\"{0}\">{1}</a></li>";//当前页
 6         static string MiddleNo = "<li class=\"pagesdiv_curr\">{0}</li>";
 7         static string Next = "<li class=\"pagesdiv_nex\"><a href=\"{0}\"></a></li>";//下一页
 8         static string NextNo = "<li class=\"pagesdiv_nex\"><a href=\"javascript:void(0)\"></a></li>";
 9         static string Last = "<li class=\"pagesdiv_last\"><a href=\"{0}\"></a></li>";//最末页
10         static string LastNo = "<li class=\"pagesdiv_last\"><a href=\"javascript:void(0)\"></a></li>";
11         /// <summary>
12         /// 分页方法
13         /// </summary>
14         /// <param name="PageIndex">页索引,1开始</param>
15         /// <param name="PageSize">页大小</param>
16         /// <param name="DataCount">总数据条数</param>
17         /// <param name="Len">显示分页长度</param>
18         /// <param name="CurrPage">当前页</param>
19         /// <returns></returns>
20         public static string PagingString(int PageIndex,int PageSize, int DataCount, int Len, string CurrPage)
21         {
22             StringBuilder PageString = new StringBuilder();
23             //根据数据总条数和每页显示条数,计算出列表页数量
24             int PageCount = DataCount % PageSize == 0 ? (DataCount / PageSize) : (DataCount / PageSize + 1);
25             if (PageIndex <= 0)
26                 PageIndex = 1;
27             if (PageIndex > PageCount)
28                 PageIndex = PageCount;
29 
30             int In = (PageIndex - 1) / Len;
31 
32             //每一页的第一个编号
33             int L = In * Len + 1;
34             //每一页的最后一个编号
35             int Lent = PageCount >= (L + Len - 1) ? (L + Len - 1) : PageCount;
36             if (PageIndex == 1)
37             {
38                 PageString.AppendFormat(FirstNo, 1);
39                 PageString.Append(PreviousNo);
40             }
41             else
42             {
43                 PageString.AppendFormat(First, string.Format(CurrPage, 1));
44                 PageString.AppendFormat(Previous, string.Format(CurrPage, (PageIndex - 1)));
45             }
46 
47             if (PageIndex == PageCount)
48             {
49                 if (PageCount % Len == 0)
50                     L = PageCount - (Len - 1);
51                 else
52                     L = PageCount - (PageCount % Len - 1);
53                 for (int i = L; i <= PageCount; i++)
54                 {
55                     if (PageIndex == i)
56                         PageString.AppendFormat(MiddleNo, i);
57                     else
58                         PageString.AppendFormat(Middle, string.Format(CurrPage, i), i);
59                 }
60             }
61             else
62             {
63                 for (int i = L; i <= Lent; i++)
64                 {
65                     if (PageIndex == i)
66                         PageString.AppendFormat(MiddleNo, i);
67                     else
68                         PageString.AppendFormat(Middle, string.Format(CurrPage, i), i);
69                 }
70             }
71 
72 
73             if (PageIndex == PageCount)
74             {
75                 PageString.AppendFormat(NextNo);
76                 PageString.AppendFormat(LastNo);
77             }
78             else//最后一页的分页列表
79             {
80                 PageString.AppendFormat(Next, string.Format(CurrPage, (PageIndex + 1)));
81                 PageString.AppendFormat(Last, string.Format(CurrPage, PageCount));
82             }
83             return PageString.ToString();
84         } 
View Code

转载于:https://www.cnblogs.com/tomsense/p/3240483.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
一、AspNetPager支持两种方式分页: 一种是PostBack方式分页, 一种是通过Url来实现分页以及Url重写功能 二、AspNetPager支持各种数据绑定控件GridView、DataGrid、DataList、Repeater以及自定义的数据绑定控件的分页功能十分强大。 三、AspNetPager分页控件本身并不显示任何数据,而只显示分页导航元素,数据在页面上的显示方式与该控件无关,所以需要手写数据连接方法来配合, 四、结合TOP 。。。NOT IN 的通用存储过程分页方法使用AspNetPager十分实用 测试控件datalist aspnetpager 的分页方法示例 分页方法为 PostBack 方式 1、 首先将AspNetPager.dll复制于应用程序下的bin目录,打开解决方案,引入dll文件 2、 在工具栏中添加控件,这样可以支持拖拽使用 3、 要使用AspNetPager 要为其设置最基本的属性 使用 SqlServer Northwind数据库的 Products表 protected Wuqi.Webdiyer.AspNetPager AspNetPager1; protected System.Web.UI.WebControls.Label Label1; protected System.Web.UI.WebControls.DataList DataList1; private void Page_Load(object sender, System.EventArgs e) { this.AspNetPager1.PageSize=10; //设置每也显示的记录条数 if(!IsPostBack) //只在页面第一次加载时起作用 { SqlDBManager db = new SqlDBManager(System.Configuration.ConfigurationSettings.AppSettings["SqlConnectionString"]); AspNetPager1.RecordCount=db.CountPage("products");//获得要使用表的记录总数 //db.CountItems自定义方法 this.BindData(); } } private void BindData() { SqlDBManager db= new SqlDBManager(System.Configuration.ConfigurationSettings.AppSettings["SqlConnectionString"].ToString(); DataList1.DataSource=db.FenPage(this.AspNetPager1.PageSize,this.AspNetPager1.CurrentPageIndex,"productid","products","productid,productname,unitprice,unitsinstock",""); //自定义方法由 TOP not in 存储过程分页方法改编 this.DataList1.DataBind(); //控件数据绑定 this.Label1.Text="当前第"+this.AspNetPager1.CurrentPageIndex+"页 总"+this.AspNetPager1.PageCount+"页"; } private void AspNetPager1_PageChanged(object sender, System.EventArgs e) { //页索引改变方法 this.BindData(); } 设计页效果 <asp:DataList id="DataList1" style="Z-INDEX: 101; LEFT: 296px; POSITION: absolute; TOP: 96px" runat="server"> <HeaderTemplate> <table border='1'> <tr> <td>产品ID</td> <td>产品名称</td> <td>产品数量</td> <td>产品单价</td> </tr> </HeaderTemplate> <FooterTemplate> </table> </FooterTemplate> <ItemTemplate> <tr> <td><%# DataBinder.Eval(Container.DataItem,"Productid")%></td> <td><%# DataBinder.Eval(Container.DataItem,"productname")%></td> <td><%# DataBinder.Eval(Container.DataItem,"unitprice")%></td> <td><%# DataBinder.Eval(Container.DataItem,"unitsinstock")%></td> </tr> </ItemTemplate> </asp:DataList> <webdiyer:AspNetPager id="AspNetPager1" style="Z-INDEX: 102; LEFT: 256px; POSITION: absolute; TOP: 40px" runat="server" Width="500px" FirstPageText="首页" LastPageText="尾页" NextPageText="下一页" PrevPageText="上一页" Height="40px" NumericButt PagingButt ShowNavigati ShowInputBox="Always" TextAfterInputBox="页" TextBeforeInputBox="跳转到第" AlwaysShow="True"> </webdiyer:AspNetPager> <asp:Label id="Label1" style="Z-INDEX: 103; LEFT: 120px; POSITION: absolute; TOP: 56px" runat="server">Label</asp:Label>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值