摘要:
记录下学习过程中的Asp.Net知识点,非原创纯属笔记1.小数据量简单分页类PagedDataSourcePagedDataSource PagedDataSource pds = new PagedDataSource(); pds.AllowPaging = true;//启用分页 pds.DataSource = lst;//设置数据源 pds.PageSize = 4;//每页显示个数 pds.CurrentPageIndex = 2;//设置当前页 csRep.DataSource = pds;//绑定数据 ... 阅读全文