过滤嵌套转发器和正确分页

发布于 2024-12-13 00:13:57 字数 283 浏览 0 评论 0原文

我有一个显示国家/地区列表的 Repeater,其中嵌套了另一个显示类别的 Repeater,其中嵌套了另一个 Repeater显示新闻文章。

这工作正常,但是用户应该能够输入关键字并过滤搜索。

过滤此内容的最佳方法是什么?我是否必须将相同的参数传递给 3 个不同的 SQL 命令?我宁愿不......

另外,我怎样才能正确地分页,这样每页仍然有 x 数量的文章?

非常感谢任何帮助。

I've got a Repeater displaying a list of Countries, and nested within this is another Repeater displaying categories, and nested within this is another Repeater displaying news articles.

This is working fine, however users should be able to enter a keyword and filter the search.

What is the best way of filtering this? Am I going to have to pass identical parameters to 3 different SQL Commands? I'd rather not..

Also, how can I then page this correctly so there are still x amount of articles per page?

Any help much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东京女 2024-12-20 00:13:57

如果您将数据库中的结果集存储在 DataTable 中,然后将该表绑定到转发器,则可以使用 DataTable.Select() 方法过滤该表。

If you store resultset from your DB in a DataTable, and then bind that table to the repeater you can filter the table by using DataTable.Select() method.

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