摘要: 记录下学习过程中的Asp.Net知识点,非原创纯属笔记1.小数据量简单分页类PagedDataSourcePagedDataSource PagedDataSource pds = new PagedDataSource(); pds.AllowPaging = true;//启用分页 pds.DataSource = lst;//设置数据源 pds.PageSize = 4;//每页显示个数 pds.CurrentPageIndex = 2;//设置当前页 csRep.DataSource = pds;//绑定数据 ... 阅读全文
posted @ 2013-01-16 09:26 雄鹰低飞 阅读(1453) 评论(0) 推荐(0) 编辑