ObjectDataSource:需要“显示所有记录”按需而不是分页

发布于 2024-11-06 19:57:22 字数 115 浏览 0 评论 0原文

我设置了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺ぐ爱和你が 2024-11-13 19:57:22

如果您想在单击按钮时显示所有记录,那么最好在按钮的 Click 处理程序上设置 AllowPaging = false。它只会禁用分页功能并将所有记录绑定到 gridview:

Gridview1.AllowPaging = false;
Gridview1.DataBind();

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:

Gridview1.AllowPaging = false;
Gridview1.DataBind();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文