码迷,mamicode.com
首页 > 其他好文 > 详细

PageBarHelper

时间:2017-06-21 21:02:31      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:info   build   rtp   user   sharp   logs   help   format   csharp   

 public class PageBarHelper
    {
        public static string GetPageBar(int pageIndex, int pageCount)
        {
            if (pageCount == 1) return string.Empty;
            int startPage = pageIndex - 5;
            startPage = startPage < 1 ? 1 : startPage;
            int endPage = startPage + 9;
            if (endPage > pageCount)
            {
                endPage = pageCount;
                startPage = endPage - 9 < 1 ? 1 : endPage - 9;
            }
            StringBuilder sb = new StringBuilder();
            if (pageIndex!=1)
            {
                sb.AppendFormat("<a href=‘/UserInfo/Index?pageIndex={0}‘>首页</a>", 1);
            }
            if (pageIndex > 1)
            {
                sb.AppendFormat("<a href=‘/UserInfo/Index?pageIndex={0}‘>上一页</a>", pageIndex - 1);
            }
            for (int i = startPage; i <= endPage; i++)
            {
                if (i == pageIndex)
                {
                    sb.Append(i);
                }
                else
                {
                    sb.AppendFormat("<a href=‘/UserInfo/Index?pageIndex={0}‘>{0}</a>", i);
                }
            }
            if (pageIndex < pageCount)
            {
                sb.AppendFormat("<a href=‘/UserInfo/Index?pageIndex={0}‘>下一页</a>", pageIndex + 1);
            }
            if (pageIndex != pageCount)
            {
                sb.AppendFormat("<a href=‘/UserInfo/Index?pageIndex={0}‘>尾页</a>", pageCount);
            }
            return sb.ToString();
        }
    }

  

PageBarHelper

标签:info   build   rtp   user   sharp   logs   help   format   csharp   

原文地址:http://www.cnblogs.com/BOSET/p/7061509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!