分类

链接

2025 年 9 月
1234567
891011121314
15161718192021
22232425262728
2930  

近期文章

热门标签

新人福利,免费薅羊毛

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

.NET 暂无评论 阅读(588)