15
05/17
ASP.NET分页组装HTML代码
// ASP.NET分页组装HTML代码 //by bruce at 2017-05-15 17:31:41 // public class Pager { public Pager(string _CateName, int _PageIndex, int _Total, int _PageSize) { this.PageIndex = _PageIndex; this.Total = _Total; this.PageSize = _PageSize; this.CateName = _CateName; } public int PageIndex { get; set; } public int Total { get; set; } public int PageSize { get; set; } ...