在 Asp.net MVC 中创建分页 gridview 样式部分视图的最佳方法是什么?
在我当前正在处理的 MVC 项目中,我需要能够从 asp.net webforms 创建与 GridView 完全相同的东西。我实际上正在使用 FubuMVC,但我可以将任何 Asp.net MVC 解决方案适应 Fubu 框架。
我想创建与 GridView 具有相同功能的东西。为了进一步解释,我的意思是我想要从 100-200 个项目的列表中列出 10-20 个项目,并进行排序和分页。
目前,我可以根据具体情况在 MVC 中直接创建类似的东西,具体取决于我想要列出的内容。将排序和分页实现为控制器操作或类似的操作,但这似乎是一个常见问题,它们必须是某种类型的可重用解决方案。唯一的问题是我想不出这个问题的最佳解决方案是什么。
那么,在 Asp.net MVC 中创建 gridview 样式的最佳方法是什么?
感谢您的阅读。
In the current MVC project I'm working on, I need to be able to create something exactly like the GridView from asp.net webforms. I'm actually using FubuMVC, but I can adapt any Asp.net MVC solution to the Fubu framework.
I want to create something that has the same kind of functionality as the GridView. To explain further, I mean I want something to list 10-20 items out of a list of 100-200 items, with sorting and paging.
Currently, I could create something like this straight-up in MVC on a case-by-case basis, depending on what I was trying to list. Implementing sorting and paging as controller actions, or something similar, but it seems like such a common problem that their must be some type of reusable solution. Only problem is that I can't think what the optimal solution to this problem is.
So, what's the best way to create a gridview-style something in Asp.net MVC?
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用jQGrid。它可以做到这一切,甚至还不止一点。
I use jQGrid. It does all that and a bit more.