博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AspNetPager分页控件配置
阅读量:6352 次
发布时间:2019-06-22

本文共 1779 字,大约阅读时间需要 5 分钟。

  AspNetPager是asp.net中常用的分页控件,下载,添加引用,在工具栏就可以看到AspNetPager控件:

  拖过来之后,设置如下属性:

1         
4

  后台cs代码:

1         protected void Page_Load(object sender, EventArgs e) 2         { 3             if (!IsPostBack) 4             { 5                 AspNetPager1.AlwaysShow = true; 6                 AspNetPager1.PageSize = 1; 7                 //this.AspNetPager1.RecordCount = noticeBll.Query().Rows.Count; 8                 DataListDataBind(); 9             }10         }11 12         /// 13         /// 绑定14         /// 15         private void DataListDataBind()16         {17             try18             {19                 PagedDataSource pds = new PagedDataSource();20                 //启用分页设置21                 pds.AllowPaging = true;22                 //单页显示条数(AspNetPager1.PageSize分页控件单页显示条数)23                 pds.PageSize = AspNetPager1.PageSize;24                 //当前页索引(AspNetPager1.CurrentPageIndex - 1分页控件当前页索引)25                 pds.CurrentPageIndex = AspNetPager1.CurrentPageIndex - 1;26                 //绑定数据源27                 pds.DataSource = noticeBll.Query().DefaultView;//datatable28 29                 //数据Count30                 AspNetPager1.RecordCount = pds.DataSourceCount;31 32                 //Repeater绑定数据33                 rptList.DataSource = pds;34                 rptList.DataBind();35             }36             catch (Exception ex)37             {38                 Page.ClientScript.RegisterStartupScript(this.GetType(), "alert1", "");39             }40         }41 42         protected void AspNetPager1_PageChanging(object src, Wuqi.Webdiyer.PageChangingEventArgs e)43         {44             AspNetPager1.CurrentPageIndex = e.NewPageIndex;45             DataListDataBind();46         }

  需要修改的地方就是第27行绑定数据源。

  设计器效果:

 

转载地址:http://balla.baihongyu.com/

你可能感兴趣的文章
电力“十三五”规划:地面光伏与分布式的分水岭
查看>>
美联社再告FBI:要求公开请黑客解锁iPhone花费
查看>>
三星电子出售希捷和夏普等四家公司股份
查看>>
任志远:当云计算遇上混合云
查看>>
思科联手发那科 用物联网技术打造无人工厂
查看>>
智慧城市首要在政府利用大数据的智慧
查看>>
2015年物联网行业:巨头展开专利大战
查看>>
以自动化测试撬动遗留系统
查看>>
网络安全初创公司存活之道
查看>>
《图解CSS3:核心技术与案例实战》——1.2节浏览器对CSS3的支持状况
查看>>
《Android应用开发》——2.4节应用类
查看>>
继 One Step 后,锤子科技 Big Bang 正式开源
查看>>
《数据科学:R语言实现》——2.5 使用Excel文件
查看>>
《淘宝店铺设计装修一册通》一2.5 抠图工具的简单运用
查看>>
《音乐达人秀:Adobe Audition实战200例》——实例4 收音机音乐节目转录到电脑里...
查看>>
《JavaScript应用程序设计》一一3.1 过时的类继承
查看>>
千万PV是什么意思?
查看>>
Amazon 推出 API 网关使用计划
查看>>
互联网流量超出路由器上限 或致全球断网
查看>>
《基于ArcGIS的Python编程秘笈(第2版)》——2.5 限制图层列表
查看>>