我在自定义服务器控件上实现分页,我想知道我是否可以使用PagedDataSource。有没有办法从PagedDataSource的当前页面获取项目?这会有效吗?
For Each item As Object In pagedDataSource
答案 0 :(得分:2)
我继续尝试这个,这确实有效。只要正确设置PagedDataSource(设置AllowPaging,PageSize和CurrentPageIndex,当然还有DataSource),就可以使用
For Each item As Object In pagedDataSource
遍历当前的项目页面。