ObjectDataSource:需要“显示所有记录”按需而不是分页
我设置了 GridView 和 ObjectDataSource 来执行自定义分页,一切都很好。现在客户想要一个“显示全部”按钮。在此按钮的事件处理程序中,我可以做什么来实现此目的?
感谢您抽出时间。
I have a GridView and ObjectDataSource set up to do custom paging and everything was fine. Now the client wants a 'show all' button. In the event handler for this button, what can I do to achieve this?
Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在单击按钮时显示所有记录,那么最好在按钮的 Click 处理程序上设置
AllowPaging = false
。它只会禁用分页功能并将所有记录绑定到 gridview:If you want show all records on a button click, then its better to set
AllowPaging = false
on the button's Click handler. It will simply disable the paging feature and bind all the records to the gridview: