20
03/18
ASP.NET MVC分页 demo
//servcie using System; using System.Collections.Generic; using System.Linq; using System.Web; using StaticMvc.Models; using Webdiyer.WebControls.Mvc; namespace StaticMvc { public class ArticleService { public PagedList<Article> GetPagedList(int page, int count) { PagedList<Article> result = GetList().ToPagedList(page, count); result.TotalItemCount = GetList().Count(); result.CurrentPageIndex = pag...