javascript 或 jquery n asp.net mvc3 中的 contnet 滑块数量

发布于 2024-12-09 01:04:38 字数 252 浏览 0 评论 0原文

我有 asp.net mvc3 应用程序。其中索引页我说有 100 个动态用户来自数据库。我正在尝试管理索引页面上图块中前 12 个用户 [1-12] 的视图。但我需要主 div 控制周围的下一个-上一个按钮。如果我点击下一步,接下来的 12 条记录 [13-24] 应该在视图中......依此类推。与前一个相反。

我可以使用 VS2010 mvc 3 中模板给出的默认 jquery 文件执行吗?我需要做什么代码?我需要使用哪些功能。或者pease建议任何开源插件...

I have asp.net mvc3 application. wherein index page i am having say 100 of dynamic users comes from the database. I am trying to manage the view of first 12 users [1-12] in tiles on index page. but i need Next-Previous buttons aroud to main div control. if i clicks next , next 12 records [13-24] should be in view..so on. same in reverse for previous.

Can i perform with default jquery files given by template in VS2010 mvc 3 ? what code i need to do ? which functions i need to use. or pease suggest any open source plugin...

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

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

发布评论

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

评论(1

亚希 2024-12-16 01:04:38

您可以使用默认的 ajax 支持来完成此操作。

我将执行以下操作:

  1. 创建一个包含 12 个用户的列表和一个分页控件的部分视图。分页控件将有自己的部分视图。
  2. 分页控件将具有 Ajax 操作链接,并提供替换用户 div 内容的选项。
  3. 我的控制器将返回一个部分视图,其中包含所选页面的用户列表。

You can do it with a default ajax support.

I would do the following:

  1. Create a partial view that contains a list of 12 users and a paging control. Paging control would have its own partial view.
  2. Paging control would have Ajax action links with option to replace content of your user div.
  3. My controller would return a partial view with a list of users for the selected page.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文