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)

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

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.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

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.

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

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.

See all articles