微软提供了PagedList分页,相信大家在网上也能搜索一大堆关于pagedList用法的博客,论坛.但是,在使用的过程中一不小心,就会掉入pagedList某种常规用法的陷阱. 我所说的某种常规用法是指如下方法(也可以参考我的博客:PagedList 分页用法): 代码如下: using System; using System.Collections.Generic; using System.Web; using System.Web.Mvc; using System.Linq; usi…
ASP.NET MVC中进行分页的方式有多种,在NuGet上有提供使用PagedList.PagedList.Mvc进行分页. 1. 通过NuGet引用PagedList.Mvc 在安装引用PagedList.Mvc的同时会安装引用PagedList. 2. PagedList.Mvc基本使用 ProvinceController.cs: using System; using System.Collections.Generic; using System.Linq; using System…
1.nuget下载PagedList包 2.PageListHelper类: using PagedList; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ClothMvcApp.Helper { public class PageListHelper<T> { public IPagedList<T> PageList { get; s…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace PagedList.MVCWeb.Controllers { public class HomeController : Controller { // // GET: /Home/ public ActionResult Index(int pageIndex=1…