MVC的简单分页【转】
2020-12-13 06:10
标签:style class blog c code java 传值的方式是通过querystring。 本例子是把整需要的数据查出来再分页的,因为当时做的时候数据很少,只有几十条。 如果数据多的话,可以在存储过程里分页,只是要传页码和记录的条数过来。 控制器: 分页的控件: 视图: @Url.Pager("project", "agentdetail/" + @Model.ProjectLineStat.ProjectId,
(int)ViewBag.PageSize, (int)ViewBag.PageIndex, (int)ViewBag.RecondCount) URL的样子为:/project/agentdetail/61?pagenum=2 参考网址:http://blog.bossma.cn/asp_net_mvc/asp-net-mvc-url-pager/ MVC的简单分页【转】,搜素材,soscw.com MVC的简单分页【转】 标签:style class blog c code java 原文地址:http://www.cnblogs.com/ringwang/p/3741930.html//分页
ViewBag.PageIndex = pageIndex;
ViewBag.PageSize = pageSize;
if (agentDetail.ProjectAgentStat!=null)
ViewBag.RecondCount = agentDetail.ProjectAgentStat.Count; //如果在存储过程分页就要传这个值
else
ViewBag.RecondCount = 0;
agentDetail.ProjectAgentStat = agentDetail.ProjectAgentStat.Skip
return View(agentDetail);
namespace System.Web.Mvc
{
public static class PageHtml
{
///
上一篇:数组的合并
下一篇:Python time模块