码迷,mamicode.com
首页 > Web开发 > 详细

AJAX 分页 asp.net分页

时间:2014-11-23 23:25:31      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:asp.net分页   style   blog   http   io   ar   color   os   sp   

原文链接:http://www.cnblogs.com/chenping-987123/archive/2011/02/14/1954640.html


查询功能是开发中最重要的一个功能,大量数据的显示,我们用的最多的就是分页。

在ASP.NET 中有很多数据展现的控件,比如Repeater、GridView,用的最多的GridView,它同时也自带了分页的功能。但是我们知道用GridView来显示数据,如果没有禁用ViewState,页面的大小会是非常的大的。而且平时我们点击首页,下一页,上一页,尾页这些功能都是会引起页面回发的,也就是需要完全跟服务器进行交互,来回响应的时间,传输的数据量都是很大的。

AJAX的分页可以很好的解决这些问题。

数据显示Pasing.aspx页面JS代码:   
 <script type="text/javascript">
        var pageIndex = 0;
        var pageSize = 5;
         window.onload = AjaxGetData("name",0,5);
        function AjaxGetData(name, index, size)<span style="font-family: Arial, Helvetica, sans-serif;"> {</span>
            $.ajax({
                url: "jQueryPaging.aspx",
                type: "Get",
                data: "Name=" + name + "&PageIndex=" + index + "&PageSize=" + size,
                dataType: "json",
                success: function (data) {
                    var htmlStr = "";
                    htmlStr += "<table>"
                    htmlStr += "<thead>"
                    htmlStr += "<tr><td>编号</td><td>文件名</td></tr>"
                    htmlStr += "</thead>";
                    htmlStr += "<tbody>"   //data.cloudfileLists.length
                    for (var i = 0; i < data.cloudfileLists.length; i++) 
                    {
                        htmlStr += "<tr>";
                        htmlStr += "<td>" + data.cloudfileLists[i].FileID + "</td>"
                                          + "<td>" + data.cloudfileLists[i].FileName + "</td>"
                        htmlStr += "</tr>";
                    }
                    htmlStr += "</tbody>";
                    htmlStr += "<tfoot>";
                    htmlStr += "<tr>";
                    htmlStr += "<td colspan='6'>";
                    htmlStr += "<span>共有记录" + data.Count + ";共<span id='count'>" + (data.Count % 5 == 0 ? parseInt(data.Count / 5) : parseInt(data.Count / 5 + 1)) + "</span>页" + "</span>";
                    htmlStr += "<a href='javascript:void' onclick='GoToFirstPage()' id='aFirstPage' >首    页</a>   ";
                    htmlStr += "<a href='javascript:void' onclick='GoToPrePage()' id='aPrePage' >前一页</a>   ";
                    htmlStr += "<a href='javascript:void' onclick='GoToNextPage()' id='aNextPage'>后一页</a>   ";
                    htmlStr += "<a href='javascript:void' onclick='GoToEndPage()' id='aEndPage' >尾    页</a>   ";
                    htmlStr += "<input type='text' /><input type='button'  value='跳转' onclick='GoToAppointPage(this)' /> ";
                    htmlStr += "</td>";
                    htmlStr += "</tr>";
                    htmlStr += "</tfoot>";
                    htmlStr += "</table>";

                    $("#divSearchResult").html(htmlStr);//重写html
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(XMLHttpRequest);
                    alert(textStatus);
                    alert(errorThrown);
                }
            });
        }
        //首页
        function GoToFirstPage() {
            pageIndex = 0;
            AjaxGetData($("#txtSearch").val(), pageIndex, pageSize);
        }
        //前一页
        function GoToPrePage() {
            pageIndex -= 1;
            pageIndex = pageIndex >= 0 ? pageIndex : 0;
            AjaxGetData($("#txtSearch").val(), pageIndex, pageSize);
        }
        //后一页
        function GoToNextPage() {
            if (pageIndex + 1 < parseInt($("#count").text())) {
                pageIndex += 1;
            }
            AjaxGetData($("#txtSearch").val(), pageIndex, pageSize);
        }
        //尾页
        function GoToEndPage() {
            pageIndex = parseInt($("#count").text()) - 1;
            AjaxGetData($("#txtSearch").val(), pageIndex, pageSize);
        }
        //跳转
        function GoToAppointPage(e) {
            var page = $(e).prev().val();
            if (isNaN(page)) {
                alert("请输入数字!");
            }
            else {
                var tempPageIndex = pageIndex;
                pageIndex = parseInt($(e).prev().val()) - 1;
                if (pageIndex < 0 || pageIndex >= parseInt($("#count").text())) {
                    pageIndex = tempPageIndex;
                    alert("请输入有效的页面范围!");
                }
                else {
                    AjaxGetData($("#txtSearch").val(), pageIndex, pageSize);
                }
            }
        }
    </script>

同一页面HTML代码:

<body>
    <form id="form1" runat="server">
    <div>
    </div>
         <div id="divSearchResult">
    </div>
    </form>
</body>
jQueryPaging.aspx页面的CS代码如下:
引用这个命名空间:using System.Web.Script.Serialization;//JavaScriptSerializer要用的。
protected void Page_Load(object sender, EventArgs e)</span>
        {

            Int32 pageIndex = Int32.MinValue;
            Int32 pageSize = Int32.MinValue;
            String name = String.Empty;
            JavaScriptSerializer jss = new JavaScriptSerializer();
            if (Request["Name"] != null)
            {
                name = Request["Name"].ToString();
                if (Request["PageIndex"] != null)
                {
                    pageIndex = Int32.Parse(Request["PageIndex"].ToString());
                    pageSize = Request["PageSize"] != null ? Int32.Parse(Request["PageSize"].ToString()) : 5;
                    IList<CloudFile> cloudfileLists = new List<CloudFile>();//cloudfile是自己写的类,表示一条数据
                    CloudFile cf = null;
                    int cout = 0;
                    DataSet ds = LookDataFromDB(name, pageIndex, pageSize,out cout);
                    foreach (DataRow row in ds.Tables[0].Rows)//把你的数据重新封装成Lis,才能被jss.Serialize(),不然会报错。
                    {
                        cf = new CloudFile();
                        cf.FileID = row["FilePathId"].ToString();
                        cf.FileName = row["FileName"].ToString();
                        cloudfileLists.Add(cf);
                    }
                  

                    if (cloudfileLists.Count > 0)
                    {
                       
                        Response.Write("{\"Count\":" + (cout) + ",\"cloudfileLists\":" + jss.Serialize(cloudfileLists) + "}");
                        Response.End();
                    }
                }


            }
        }

        private DataSet LookDataFromDB(string name, int pageIndex, int pageSize,out int cout)
        {
           
            DataSet ds = new DataSet();
            try
            {
                pageIndex = 5 * pageIndex;//pageIndex ,表示这一页从哪一条数据开始

               // 这里写自己的数据获取方法,把数据获取好了甩到ds里面,返回到前面。(应该有更好的办法,自己想哦,也可以发评论我们一起探讨....。)
            }
            catch (Exception)
            {
                cout = 0;
                ds = null;
            }
            return ds;
        }
//<span style="font-family: Arial, Helvetica, sans-serif;">CloudFile类</span>
    public class CloudFile
    {
        public String FileID { get; set; }
        public String FileName { get; set; }
        public String FileDirName { get; set; }
    }

本文方法来源于:http://www.cnblogs.com/chenping-987123/archive/2011/02/14/1954640.html
基本思路都是上面链接提供的,感谢上文作者。
有问题可以继续探讨,我基本还是看懂了的.....
再次致谢.....







AJAX 分页 asp.net分页

标签:asp.net分页   style   blog   http   io   ar   color   os   sp   

原文地址:http://blog.csdn.net/u013711462/article/details/41419943

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!