从ASP .NET PagedDataSource获取当前页面中的项目

时间:2011-05-23 19:57:22

标签: asp.net pagination paging

我在自定义服务器控件上实现分页,我想知道我是否可以使用PagedDataSource。有没有办法从PagedDataSource的当前页面获取项目?这会有效吗?

For Each item As Object In pagedDataSource

1 个答案:

答案 0 :(得分:2)

我继续尝试这个,这确实有效。只要正确设置PagedDataSource(设置AllowPaging,PageSize和CurrentPageIndex,当然还有DataSource),就可以使用

For Each item As Object In pagedDataSource

遍历当前的项目页面。