public static HtmlString ShowPageNavigate(this HtmlHelper htmlHelper, int currentPage, int pageSize, int totalCount) |
{ |
var redirectTo = htmlHelper.ViewContext.RequestContext.HttpContext.Request.Url.AbsolutePath; |
pageSize = pageSize == 0 ? 3 : pageSize; |
var totalPages = Math.Max((totalCount + pageSize - 1) / pageSize, 1); //总页数 |
var output = new StringBuilder(); |
if (totalPages > 1) |
{ |