• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

asp.net文章内容分页方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
#region Html内容分页处理函数
        /// <summary>
        /// Html内容分页处理函数 
        /// </summary>
        /// <param name="strBody">要分页的内容</param>
        /// <param name="strSplitString">分隔字符串</param>
        /// <param name="pageIndexName">页面索引参数名</param>
        /// <param name="patter">链接匹配模式</param>
        /// <param name="isAppendHeadEnd">是否追加第一页和最后一页</param>
        /// <returns></returns>
        public static string CreateContentPager(ref string strBody,
                                    string strSplitString,
                                    string pageIndexName,
                                    string patter,
                                    bool isAppendHeadEnd)
        {
            string[] strBodyArray = strBody.Split(new string[] { strSplitString }, StringSplitOptions.None);
            //分页内容
            StringBuilder strHtmlPager = new StringBuilder();
            int currentPageIndex = 1; //当前页页码
            int pageCount = strBodyArray.Length;//总页数
            if (!string.IsNullOrEmpty(HttpContext.Current.Request[pageIndexName]))
            {
                currentPageIndex = CommonFunction.getInteger(HttpContext.Current.Request[pageIndexName]);
            }
            //无需分页
            if (pageCount == 1)
            {
                return null;
            }
            //开始分页处理
            if (isAppendHeadEnd)
            {
                if (currentPageIndex == 1)
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.Append("<b>[第一页]</b>");
                }
                else
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.Append(patter.Replace("{0}", 1.ToString()).Replace("{1}", "第一页"));
                }
            }
            //页头
            if (currentPageIndex > 1)
            {
                //显示上一页
                strHtmlPager.AppendLine();
                strHtmlPager.Append(patter.Replace("{0}", (currentPageIndex - 1).ToString()).Replace("{1}", "上一页"));
            }
            else
            {
                if (currentPageIndex == 1)
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.Append("<b>[上一页]</b>");
                }
            }
            //开始分页
            for (int i = 1; i <= pageCount; i++)
            {
                //如果 当前页索引=页码的话,执行操作标示当前页码
                if (i == currentPageIndex)
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.AppendFormat("<b>[{0}]</b>", i);
                }
                else
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.AppendFormat(patter.Replace("{0}", i.ToString()).Replace("{1}", i.ToString()));
                }
            }
            //页尾
            if (currentPageIndex + 1 > pageCount)
            {
                strHtmlPager.AppendLine();
                strHtmlPager.Append("<b>[下一页]</b>");
            }
            else
            {
                strHtmlPager.AppendLine();
                strHtmlPager.Append(patter.Replace("{0}", (currentPageIndex + 1).ToString()).Replace("{1}", "下一页"));
            }
            if (isAppendHeadEnd)
            {
                if (currentPageIndex == pageCount)
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.Append("<b>[已经是最后一页]</b>");
                }
                else
                {
                    strHtmlPager.AppendLine();
                    strHtmlPager.Append(patter.Replace("{0}", pageCount.ToString()).Replace("{1}", "最后一页"));
                }
            }
            strBody = strBodyArray[currentPageIndex - 1];
            return strHtmlPager.ToString();
        }
        #endregion

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NET安全认证(Form认证奇怪的失败)发布时间:2022-07-10
下一篇:
asp.netIHttpHandler浅析发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap