过滤嵌套转发器和正确分页
我有一个显示国家/地区列表的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将数据库中的结果集存储在
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 usingDataTable.Select()
method.