从asp.net中的itemDataBound访问分页数据源
我已将中继器绑定到 PagedDataSource,并且想从 ItemDataBound 事件获取 PagedCount。我尝试了一些方法但不起作用。有谁知道该怎么做?
I've bound my repeater to a PagedDataSource and I want to get the PagedCount from the ItemDataBound event. I've tried a few things and it's not working. Does anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能已经解决了,但这里是。
你想在绑定页脚元素进行分页时使用这个值,对吧?
您可以在数据绑定上访问数据源。
不过,在绑定所有项目后,DataSource 将为 null。
绑定按钮或链接时,您可以在
button.CommandArgument
中设置页码,例如设置button.CommandName = "next"
。然后当然添加
OnItemCommand
内容。It's probably been resolved, but here goes.
You want to use this value when binding the footer element for paging, right?
You can access the datasource on databound.
The DataSource will be null, though, after all the items have been bound.
When binding the buttons or links, you can set the page numbers in
button.CommandArgument
and setbutton.CommandName = "next"
, for example.Then ofcourse add the
OnItemCommand
stuff.