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 Webdiyer.WebControls.Mvc; namespace MvcGuestBook.Common { public static class MvcPaper { /// <summary> /// 重写PagedList可以使用List集合数据 /// </summary> /// &l…