C#自定义分页方法二

这个分页方法是我在一个开源项目里面找到的,拿过来给大家分享!

不说了,上代码!

  1         #region 替换指定的字符串
  2       /// <summary>
  3         /// 替换指定的字符串
  4       /// </summary>
  5         /// <param name="originalStr">原字符串</param>
  6         /// <param name="oldStr">旧字符串</param>
  7         /// <param name="newStr">新字符串</param>
  8         /// <returns></returns>
  9         public static string ReplaceStr(string originalStr, string oldStr, string newStr)
 10         {
 11             if (string.IsNullOrEmpty(oldStr))
 12             {
 13                 return "";
 14             }
 15             return originalStr.Replace(oldStr, newStr);
 16         }
 17         #endregion
 18 
 19         #region 显示分页
 20         /// <summary>
 21         /// 返回分页页码
 22         /// </summary>
 23         /// <param name="pageSize">页面大小</param>
 24         /// <param name="pageIndex">当前页</param>
 25         /// <param name="totalCount">总记录数</param>
 26         /// <param name="linkUrl">链接地址,__id__代表页码</param>
 27         /// <param name="centSize">中间页码数量</param>
 28         /// <returns></returns>
 29         public static string PagingString(int pageIndex, int pageSize, int totalCount, string linkUrl, int centSize)
 30         {
 31             //计算页数
 32             if (totalCount < 1 || pageSize < 1)
 33             {
 34                 return "";
 35             }
 36             int pageCount = totalCount / pageSize;
 37             if (pageCount < 1)
 38             {
 39                 return "";
 40             }
 41             if (totalCount % pageSize > 0)
 42             {
 43                 pageCount += 1;
 44             }
 45             if (pageCount <= 1)
 46             {
 47                 return "";
 48             }
 49             StringBuilder pageStr = new StringBuilder();
 50             string pageId = "__id__";
 51             //<li class="foo_syy">上一页</li> <li class="foo_xyy">下一页</li>
 52             string firstBtn = "<li class=\"foo_syy\"><a href=\"" + ReplaceStr(linkUrl, pageId, (pageIndex - 1).ToString()) + "\">上一页</a></li>";
 53             string lastBtn = "<li class=\"foo_xyy\"><a href=\"" + ReplaceStr(linkUrl, pageId, (pageIndex + 1).ToString()) + "\">下一页</a></li>";
 54             string firstStr = "<li class=\"foo_ys\"><a href=\"" + ReplaceStr(linkUrl, pageId, "1") + "\">1</a></li>";
 55             string lastStr = "<li class=\"foo_ys\"><a href=\"" + ReplaceStr(linkUrl, pageId, pageCount.ToString()) + "\">" + pageCount.ToString() + "</a>";
 56 
 57             if (pageIndex <= 1)
 58             {
 59                 firstBtn = "<li class=\"foo_syy\"><span class=\"disabled\">上一页</span></li>";
 60             }
 61             if (pageIndex >= pageCount)
 62             {
 63                 lastBtn = "<li class=\"foo_xyy\"><span class=\"disabled\">下一页</span></li>";
 64             }
 65             if (pageIndex == 1)
 66             {
 67                 firstStr = "<li class=\"foo_ys\"><span class=\"current\">1</span></li>";
 68             }
 69             if (pageIndex == pageCount)
 70             {
 71                 lastStr = "<li class=\"foo_ys\"><span class=\"current\">" + pageCount.ToString() + "</span></li>";
 72             }
 73             int firstNum = pageIndex - (centSize / 2); //中间开始的页码
 74             if (pageIndex < centSize)
 75                 firstNum = 2;
 76             int lastNum = pageIndex + centSize - ((centSize / 2) + 1); //中间结束的页码
 77             if (lastNum >= pageCount)
 78                 lastNum = pageCount - 1;
 79             pageStr.Append(firstBtn + firstStr);
 80             if (pageIndex >= centSize)
 81             {
 82                 pageStr.Append("<li class=\"foo_ys\"><span>...</span></li>");
 83             }
 84             for (int i = firstNum; i <= lastNum; i++)
 85             {
 86                 if (i == pageIndex)
 87                 {
 88                     pageStr.Append("<li class=\"foo_ys\"><span class=\"current\">" + i + "</span></li>");
 89                 }
 90                 else
 91                 {
 92                     pageStr.Append("<li class=\"foo_ys\"><a href=\"" + ReplaceStr(linkUrl, pageId, i.ToString()) + "\">" + i + "</a></li>");
 93                 }
 94             }
 95             if (pageCount - pageIndex > centSize - ((centSize / 2)))
 96             {
 97                 pageStr.Append("<li class=\"foo_xyy\"><span>...</span></li>");
 98             }
 99             pageStr.Append(lastStr + lastBtn);
100             return pageStr.ToString();
101         }
102         #endregion
View Code

 

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

一、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、付费专栏及课程。

余额充值