在 asp.net mvc 中的单个页面上对多个集合进行分页
我正在使用 asp.net mvc 构建文档搜索引擎。搜索结果是两个不同的 IList 集合(一个用于匹配的人员,另一个用于与搜索参数匹配的文档)。我将这些集合放入一个类中,并将该类返回到视图中。该视图使用 HTML.RenderPartial() 将相应的集合绑定到其自己的用户控件。我想独立地对每个集合进行分页。如何创建一个操作方法来更改每个单独集合的页面,而无需重新绑定其他集合的值? (两个集合都显示在同一页面上)。
I'm building a search engine for documents using asp.net mvc. The results of the search are two different IList collections (One for the people matched and one for the documents matched with the search parameters). I put these collections in a class and return the class to the view. The view uses HTML.RenderPartial() to bind the respective collection to its own user control. I want to page each of those collections independently. How do I create an action method to change the page of each individual collection without having to rebind the values for the other collection? (Both collections are displayed on the same page).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者,您可以使用新的 Html.Action (查看 在这里)。我不太明白你拥有什么或想要什么。尝试给我更多信息。
Alternatively, you can use the new Html.Action (take a look here). I don't exactly understand of what you have or what you want. Try giving me more info.