分页插件jquery.pagination.js
采用Jquery无刷新分页插件jquery.pagination.js 实现无刷新分页效果
成都创新互联公司2013年至今,是专业互联网技术服务公司,拥有项目成都做网站、网站设计、外贸营销网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元新巴尔虎左做网站,已为上家服务,为新巴尔虎左各地企业和个人服务,联系电话:18980820575
1.插件参数列表
http://www.dtan.so
2.页面内容:
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
-
-
-
- Porschev----无刷新翻页
-
-
-
-
-
-
-
-
-
-
Posrchev----无刷新分页
-
-
-
-
3.页面后台内容:
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- public partial class _Default : System.Web.UI.Page
- {
- public string pageCount = string.Empty; //总条目数
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- pageCount = new PagerTestBLL.PersonManager().GetPersonCount().ToString();
- }
- }
- }
4.Handler中的内容:
- <%@ WebHandler Language="C#" Class="PagerHandler" %>
- using System;
- using System.Web;
- using System.Collections.Generic;
- using System.Text;
- public class PagerHandler : IHttpHandler {
-
- public void Proce***equest (HttpContext context) {
- context.Response.ContentType = "text/plain";
- string str = string.Empty;
-
- //具体的页面数
- int pageIndex;
- int.TryParse(context.Request["pageIndex"], out pageIndex);
- //页面显示条数
- int size = Convert.ToInt32(context.Request["pageSize"]);
-
- if (pageIndex == 0)
- {
- pageIndex = 1;
- }
-
- int count;
- List list = new PagerTestBLL.PersonManager().GetAllPerson(size, pageIndex, "", out count);
-
- StringBuilder sb = new StringBuilder();
- foreach (PagerTestModels.Person p in list)
- {
- sb.Append("
"); - sb.Append(p.Id.ToString());
- sb.Append("
| "); - sb.Append(p.Name);
- sb.Append("
|
"); - }
- str = sb.ToString();
- context.Response.Write(str);
- }
-
- public bool IsReusable {
- get {
- return false;
- }
- }
- }
5.实现效果图:
文章标题:分页插件jquery.pagination.js
本文网址:
http://dzwzjz.com/article/gsscdp.html