如何在mvc网格中进行分页?
关于如何以最简单的方式在 mvc 网格中进行分页有什么建议吗?请指出示例代码(如果有)
Any suggestions on how to do paging in the mvc grid, in an easiest possible way? Please point me to sample code, if any
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
里兹,
我认为这个问题已经被问过,但这是我指的问题: 分页&使用 ASP.Net MVC 对网格进行排序
另外,这是一个关于如何执行此操作的非常简洁的教程:
http://xlib.wordpress.com/2009/06/29/asp-net-mvc- grid-%E2%80%93-part-2-paging/
上述链接中的一些片段:
使用它在页面上获取选择器,以允许用户确定每页显示的行数:
然后在自定义页面控制器中编写以下代码:
现在将 JavaScript 添加到页面:
然后更新页面控制器以执行分页:
我希望这有帮助,
谢谢!
Ritz,
I think this question has been asked already, but here is the question I'm referring to: Paging & Sorting grids with ASP.Net MVC
Also, this is a very concise tutorial on how to do this:
http://xlib.wordpress.com/2009/06/29/asp-net-mvc-grid-%E2%80%93-part-2-paging/
Some snippets from the above link:
Use this to get a selector on your page to allow the user to determine the number of rows to display per page:
Then in a custom page controller write this code:
Now add the JavaScript to the page:
Then update your page controller to perform the paging:
I hope this helps,
Thanks!