码迷,mamicode.com
首页 > Web开发 > 详细

MVC使用x.PagedList分页

时间:2016-03-30 12:28:31      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

MVC分页

1.Install Package

Tools=> NuGet Package Manager=>Manager NuGet Packages of Solution

技术分享

 

安装 X.PagedList和X.PagedList.MVC

 

package.config文件:  <package id="X.PagedList" version="1.24.1.300" targetFramework="net45" />
  <package id="X.PagedList.Mvc" version="4.9.1.310" targetFramework="net45" />

 

 

 

View界面:


@model  PagedList.IPagedList<T>
@using PagedList
@using PagedList.Mvc

@Html.PagedListPager(Model, page => Url.Action("ActionName", new { page }))
//分页控件

 

 

controller:

public ActionResult ActionName(int? page)

{

int PageNumber=page?? 1;//page为null时默认值为1

int PageSize=10;

return View(list.ToPagedList(PageNumber,PageSize));

}

MVC使用x.PagedList分页

标签:

原文地址:http://www.cnblogs.com/huangchenqin/p/5336501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!