自动化分页,HTML代码控制 思想_html/css_WEB-ITnose
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));%>
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(); }}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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 article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

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.

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

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.

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

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