无为清净楼资源网 Design By www.qnjia.com
一、无数据提交
第一步,建立一个 Controller命名为PageIndex的空控制器,自定义一个方法如下:
public ActionResult PageIndex(string action, string controller, int currentPage, int pageCount) { //int count = db.Product.Count(); ViewBag.PageCount = pageCount;//从操作中获取总数据页数将传入分页视图页面 ViewBag.CurrentPage = currentPage;//从操作中获取当前页数将传入分页视图页面 ViewBag.action = action; ViewBag.controller = controller; return PartialView(); }
传入四个参数:
action:操作(要分页的视图的操作,默认为Index);
controller:控制器;
currentPage:当前页数;
pageCount:数据总页数
第二步:添加视图(PageIndex)
@if (ViewBag.PageCount == null || ViewBag.PageCount == 0) { <span>您好,当前没有数据显示!</span> } else { if (ViewBag.CurrentPage <= 10) { <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = 1 }, null)"> 首页</a>|</span> } else { <a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = 1 }, null)"> 首页</a> <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.CurrentPage - 10 }, null)"> ...</a> </span> } for (int i = ViewBag.CurrentPage - 3; i < ViewBag.CurrentPage + 3; i++) { if (i <= 0) { continue; } if (i > ViewBag.PageCount) { break; } <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = i }, null)"> 第 @i 页</a>|</span> } if (ViewBag.CurrentPage > 1) { <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.CurrentPage - 1 }, null)"> 上一页</a>|</span> } if (ViewBag.PageCount > ViewBag.CurrentPage) { <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.CurrentPage + 1 }, null)"> 下一页</a></span> } if (ViewBag.CurrentPage == ViewBag.PageCount || ViewBag.CurrentPage >= ViewBag.PageCount - 10) { <a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.PageCount }, null)"> 尾 页</a> } else { <span><a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.CurrentPage + 10 }, null)"> ...</a></span> <a href="@Url.Action(ViewBag.action, ViewBag.controller, new { PageIndex = ViewBag.PageCount }, null)"> 尾 页</a> } <span style="padding-left: 20px">当前页数: @ViewBag.CurrentPage | 共 @ViewBag.PageCount 页 </span> }
第三步:操作的视图的控制器修改
public ViewResult Index(int"codetitle">复制代码 代码如下:@Html.Action("PageIndex", "Product", new { action = "Index", controller = "Log", pageCount = ViewBag.PageCount, currentPage = ViewBag.CurrentPage })
一般来说,数据都是变动的。
二、有数据提交
第一步:建立一个 Controller命名为PageIndex的空控制器,自定义一个方法如下:
public ActionResult PageIndexKey(int currentPage, int pageCount) { ViewBag.PageCount = pageCount;//从操作中获取总数据页数将传入分页视图页面 ViewBag.CurrentPage = currentPage;//从操作中获取当前页数将传入分页视图页面 return PartialView(); }第二步:建立分布视图
<script> $(function () { $("#pageingByForm a").click(function (event) { $("#pageIndex").val($(this).attr("pageIndex")); //$(this).parent("Form").submit(); document.getElementsByTagName("Form").item(0).submit(); event.preventDefault(); }); }); </script> @Html.Hidden("pageIndex") <div id="pageingByForm"> @if (ViewBag.PageCount == null || ViewBag.PageCount == 0) { <span>当前没有数据</span> } else { if (ViewBag.CurrentPage <= 10) { <span><a pageindex="1" href="#">首页</a>|</span> } else { <span><a pageindex="1" href="#">首页</a>|</span> <span><a pageIndex="@(ViewBag.CurrentPage - 10)" href="#">...</a>|</span> } for (int i = ViewBag.CurrentPage - 3; i < ViewBag.CurrentPage + 3; i++) { if (i <= 0) { continue; } if (i > ViewBag.PageCount) { break; } <span><a pageIndex="@i" href="#">第 @i 页</a>|</span> } if (ViewBag.CurrentPage >1) { <span><a pageIndex="@(ViewBag.CurrentPage - 1)" href="#">上一页</a>|</span> } if (ViewBag.PageCount > ViewBag.CurrentPage) { <span><a pageIndex="@(ViewBag.CurrentPage + 1)" href="#">下一页</a></span> } if (ViewBag.CurrentPage >= ViewBag.PageCount - 10) { } else { <span><a pageIndex="@(ViewBag.CurrentPage + 10)" href="#">...</a>|</span> <span><a pageIndex="@ViewBag.PageCount" href="#">尾 页</a></span> } <span style="padding-left: 20px">当前页数: @ViewBag.CurrentPage | 共 @ViewBag.PageCount 页 </span> } </div>第三步:修改操作视图和控制器
public ViewResult Index(int"color: #800000"> @using (Html.BeginForm())
{
根据性别得到查询结果
性别: @Html.TextBox("sex")
<input type="submit" value="查询" />
@Html.Action("PageIndexKey", "PageIndex", new { pageCount = ViewBag.PageCount, currentPage = ViewBag.CurrentPage })
}
Example:
//数据,一个list的集合 List<string> s = new List<string>(); s.Add("张军"); ViewBag.PageCount = (int)Math.Ceiling(s.Count() / 20.0); return View(s.Skip((pageInd - 1) * 20).Take(20)); @Html.Action("PageIndex", "PageIndex", new { action = "", controller = "", pageCount = ViewBag.PageCount, currentPage = ViewBag.CurrentPage })以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月16日
2024年11月16日
- 于文文.2024-天蝎座【华纳】【FLAC分轨】
- 黄雨勳《魔法列车首部曲》[FLAC/分轨][173.61MB]
- 群星《歌手2024 第13期》[320K/MP3][50.09MB]
- 群星《歌手2024 第13期》[FLAC/分轨][325.93MB]
- 阿木乃《爱情买卖》DTS-ES【NRG镜像】
- 江蕾《爱是这样甜》DTS-WAV
- VA-Hair(OriginalBroadwayCastRecording)(1968)(PBTHAL24-96FLAC)
- 博主分享《美末2RE》PS5 Pro运行画面 玩家仍不买账
- 《双城之战2》超多新歌MV发布:林肯公园再次献声
- 群星《说唱梦工厂 第11期》[320K/MP3][63.25MB]
- 群星《说唱梦工厂 第11期》[FLAC/分轨][343.07MB]
- 群星《闪光的夏天 第5期》[320K/MP3][79.35MB]
- 秀兰玛雅.1999-友情人【大旗】【WAV+CUE】
- 小米.2020-我想在城市里当一个乡下人【滚石】【FLAC分轨】
- 齐豫.2003-THE.UNHEARD.OF.CHYI.3CD【苏活音乐】【WAV+CUE】