1. HtmlHelper.cs using System; using System.Web.Mvc; using System.Web.Mvc.Html; using System.Web.Mvc.Ajax; using System.Text; using System.Collections.Generic; using System.Collections; namespace AutoReclaim.Models { public static cla ss PagerHelper
本人写的一个分页Helper,支持普通分页(也就是,首页、上一页、下一页、末页等),综合分页(普通分页和数字分页的综合)。
下面是分页效果:
分页代码:
PagerHelper.cs
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Web;
using System.Text;
using System.Web.Mvc;
usi