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…
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…