Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将中继器绑定到 PagedDataSource,并且我想从 ItemDataBound 事件中获取 PagedCount。我已经尝试了几件事,但它不起作用。有谁知道如何做到这一点?
它可能已经解决了,但是这里有。
您想在绑定页脚元素以进行分页时使用此值,对吗?您可以访问数据绑定上的数据源。
List<object> dataSource = repeater.DataSource as List<object>;
但是,在绑定了所有项之后,DataSource 将为空。
button.CommandArgument绑定按钮或链接时,可以在和 中设置页码button.CommandName = "next",例如。然后当然添加OnItemCommand东西。
button.CommandArgument
button.CommandName = "next"
OnItemCommand