Home Web Front-end HTML Tutorial 自动化分页,HTML代码控制 思想_html/css_WEB-ITnose

自动化分页,HTML代码控制 思想_html/css_WEB-ITnose

Jun 24, 2016 am 11:34 AM

1、绑定分页数据

  Request:主要是获取当前查询中所参与的所有条件

  pageSize:分页显示数量

  totalCount:分页总数

  currentPageStr:自定义参数(后面会更新该参数的用法和途径)

  tab:自定义参数(后面会更新该参数的用法和途径,和上面currentPageStr配合使用,需优化)

  pageIndexNumber:页面上显示当前页前、后多少页数数的数字

      如:显示当前页前后个5页的数字

  IsShouCount:是否显示总数量

2、用法,Response.Write页面输出一段html

<div class="m-t-20 paging">            <pre class="brush:php;toolbar:false">            <%Response.Write(ZCJExtensions.Pager(Request, 40, iCount, "pi",IsShouCount:true));%>            
Copy after login

3、源代码 方法主要用到请求头类的使用,HttpRequest

public static class ZCJExtensions{    /// <summary>    /// 分页Pager显示(分页请求字符串默认为pi)    /// </summary>    /// <param name="pageSize">每页记录的数量</param>    /// <param name="totalCount">总记录数</param>    /// <param name="pageIndexNumber">显示页索引的数量</param>    /// <returns></returns>    public static string Pager(int pageSize, int totalCount,int pageIndexNumber = 10)    {        return ZCJExtensions.Pager(HttpContext.Current.Request, pageSize, totalCount, "pi", "", pageIndexNumber);    }    /// <summary>    /// 分页Pager显示        /// </summary>    /// <param name="requ">请求</param>    /// <param name="pageSize">每页记录的数量</param>    /// <param name="totalCount">总记录数</param>    /// <param name="currentPageStr">请求字符串</param>    /// <param name="tab">切换ID</param>    /// <param name="pageIndexNumber">显示页索引的数量</param>    /// <returns></returns>    public static string Pager(HttpRequest requ, int pageSize, int totalCount, string currentPageStr = "1",string tab="",int pageIndexNumber = 10,bool IsShouCount=false)    {        //var queryString = html.ViewContext.HttpContext.Request.QueryString;        string html = "";        var queryString = requ.QueryString;        int currentPage = 1; //当前页            var totalPages = Math.Max((totalCount + pageSize - 1) / pageSize, 1); //总页数            //var dict = new System.Web.Routing.RouteValueDictionary(html.ViewContext.RouteData.Values);        var dict = new System.Web.Routing.RouteValueDictionary(requ.Form);        var output = new System.Text.StringBuilder();        var url = requ.Url.AbsolutePath + "?" + currentPageStr + "=(*)";        if (tab.Length > 0)        {            url += "&tab=" + tab;        }        //与相应的QueryString绑定           foreach (string key in queryString.Keys)        {            if (!string.IsNullOrEmpty(key) && queryString[key] != null )            {                dict[key] = queryString[key];                if (key != currentPageStr && key.ToLower()!="tab")                {                    url += "&" + key + "=" + queryString[key];                }            }        }        //获取 ~/Page/{page number} 的页号参数          int.TryParse((dict[currentPageStr] != null) ? dict[currentPageStr].ToString() : "0", out currentPage);        if (currentPage <= 0) currentPage = 1;        if (totalPages > 1)        {            if (currentPage != 1)            {                dict[currentPageStr] = 1;                //output.AppendFormat("{0} ", html.RouteLink("<<", dict));                var pageunm = "1";                var tempurl = url.Replace("(*)", pageunm);                output.AppendFormat("{0}", "<a href='" + tempurl + "'>首页</a>");            }            if (currentPage > 1)            {                //处理上一页的连接                    dict[currentPageStr] = currentPage - 1;                var pageunm = (currentPage - 1).ToString();                var tempurl = url.Replace("(*)", pageunm);                //output.Append(html.RouteLink("<", dict));                output.Append("<a href='" + tempurl + "'>上一页</a>");            }            else            {                //output.Append("<span><</span>");            }            output.Append("");            int currint = pageIndexNumber / 2;            for (int i = 0; i <= pageIndexNumber; i++)            {                //一共最多显示10个页码,前面5个,后面5个                    if ((currentPage + i - currint) >= 1 && (currentPage + i - currint) <= totalPages)                    if (currint == i)                    {                        //当前页处理                            output.Append(string.Format("<span>{0}</span>", currentPage));                    }                    else                    {                        //一般页处理                           dict[currentPageStr] = currentPage + i - currint;                        var pageunm = (currentPage + i - currint).ToString();                        var tempurl = url.Replace("(*)", pageunm);                        //output.Append(html.RouteLink((currentPage + i - currint).ToString(), dict));                        output.Append("<a href='" + tempurl + "'>" + pageunm + "</a>");                    }                output.Append("");            }            if (currentPage < totalPages)            {                //处理下一页的链接                   dict[currentPageStr] = currentPage + 1;                var pageunm = (currentPage + 1).ToString();                //output.Append(html.RouteLink(">", dict));                var tempurl = url.Replace("(*)", pageunm);                output.Append("<a href='" + tempurl + "'>下一页</a>");            }            else            {                //output.Append(">");            }            output.Append("");            if (currentPage != totalPages)            {                dict[currentPageStr] = totalPages;                var pageunm = totalPages.ToString();                var tempurl = url.Replace("(*)", pageunm);                //output.Append(html.RouteLink(">>", dict));                output.Append("<a href='" + tempurl + "'>尾页</a>");            }            output.Append(" ");        }        output.AppendFormat("第{0}页/共{1}页", currentPage, totalPages);//这个统计加不加都行           if (IsShouCount == true)         {            output.AppendFormat(",共{0}条记录", totalCount);        }        //HtmlString        return output.ToString();    }}
Copy after login

 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

HTML, CSS, and JavaScript: Essential Tools for Web Developers HTML, CSS, and JavaScript: Essential Tools for Web Developers Apr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

See all articles