主頁 > 知識庫 > asp.net 無刷新分頁實例代碼

asp.net 無刷新分頁實例代碼

熱門標簽:Mysql連接數(shù)設(shè)置 電子圍欄 團購網(wǎng)站 銀行業(yè)務(wù) 阿里云 科大訊飛語音識別系統(tǒng) Linux服務(wù)器 服務(wù)器配置

數(shù)據(jù)類代碼:

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Reflection;

namespace DAL
{
    public  class UserManageClass
    {
        /// summary>
        /// 取得總頁數(shù)
        /// /summary>
        /// returns>總頁數(shù)/returns>
        public int GetPageCount()
        {
            int counts;
            string SqlStr = "select count(0) from [User]";
            counts = new SQLHelper().Content(SqlStr, CommandType.Text);
            return counts;
        }
        /// summary>
        /// 取出每一頁的內(nèi)容
        /// /summary>
        /// param name="SatrPage">開始頁數(shù)/param>
        /// param name="EndPage">結(jié)束頁數(shù)/param>
        /// returns>每一頁的內(nèi)容/returns>
        public DataTable GetPageDate(string SatrPage, string EndPage)
        {
            DataTable dt;
            string SqlStr = @"select * from
            (select *, ROW_NUMBER() over(order by id)as no_ from [User])aa
            where aa.no_ between '"+SatrPage+"' and '"+EndPage+"'";
            dt = new SQLHelper().ExecuteQuery(SqlStr, CommandType.Text);
            return dt;
        }

        /// summary>
        /// 將一個DataTable轉(zhuǎn)換成列表
        /// /summary>
        /// typeparam name="T">實體對象的類型/typeparam>
        /// param name="dt">要轉(zhuǎn)換的DataTable/param>
        /// returns>/returns>
        public  ListT> DataTableToEntityListT>(DataTable dt)
        {
            ListT> entiyList = new ListT>();

            Type entityType = typeof(T);
            PropertyInfo[] entityProperties = entityType.GetProperties();

            foreach (DataRow row in dt.Rows)
            {
                T entity = Activator.CreateInstanceT>();

                foreach (PropertyInfo propInfo in entityProperties)
                {
                    if (dt.Columns.Contains(propInfo.Name))
                    {
                        if (!row.IsNull(propInfo.Name))
                        {
                            propInfo.SetValue(entity, row[propInfo.Name], null);
                        }
                    }
                }

                entiyList.Add(entity);
            }

            return entiyList;
        }


    }
}

PageService.ashx.cs一般處理程序代碼:

復(fù)制代碼 代碼如下:

using System;
using System.Collections;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;
using System.Data.SqlClient;
using DAL;
using System.Web.Extensions;
using System.Web.Script.Serialization;
using Model;
using System.Web.UI.MobileControls;
using System.Collections.Generic;

namespace LandingSystem
{
    /// summary>
    /// $codebehindclassname$ 的摘要說明
    /// /summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class PageService : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string action = context.Request["action"];
            if (action == "GetPageCount")
            {
                int counts = new UserManageClass().GetPageCount();
                int page = counts / 3;
                if (counts % 3 != 0)
                {
                    page++;
                }
                context.Response.Write(page);
            }
            else if (action == "GetPageData")
            {
                int pageNo = Convert.ToInt32(context.Request["PageNo"]);
                string SatrPage = ((pageNo - 1) * 3 + 1).ToString();
                string EndPage = (pageNo * 3).ToString();
                DataTable dt= new UserManageClass().GetPageDate(SatrPage, EndPage);
                IListRegisterModel> data = ModelConvertHelperRegisterModel>.ConvertToModel(dt);
               // IListRegisterModel> data = new UserManageClass().DataTableToEntityListRegisterModel>(dt);
                var p1 = data.Select(c => new { c.Name,c.Phone});
                #region 廢物代碼
                // var p1 = data.Select( c => new { c.Name,c.Phone});
                //var p1=data.Select(dr=>new {dr["Name"].ToString(),dr["Phone"].ToString()});


                //var T_model = new ListRegisterModel>();               
                //var p3 = T_model.Select(c => new { c.Name, c.Phone });

                //var p2=data.Select(c=>new {})
                #endregion
                JavaScriptSerializer jss = new JavaScriptSerializer();
                context.Response.Write(jss.Serialize(p1));
            }
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

aspx頁面代碼:

復(fù)制代碼 代碼如下:

head runat="server">
    title>無標題頁/title>

    script src="JS/jquery-latest.js" type="text/javascript">/script>
    script type="text/javascript">
$(function(){
//-----------------------------------------------------------
function getPageData(pageNo){ //取得某頁數(shù)據(jù)的方法
$.post("PageService.ashx",{"action":"GetPageData","PageNo":pageNo},function(data,status){
if(status=="success"){
$("#Comment").empty();
var comments=$.parseJSON(data); //反序列化json數(shù)據(jù)。
for(var i=0;icomments.length;i++){
var row=comments[i];
var li= $("li>"+row.Name+" : "+row.Phone+"/li>");
$("#Comment").append(li); //每取出一條數(shù)據(jù)就創(chuàng)建一個li并append到Comment/ul內(nèi)。
}
}
});
}
//-------------------------------------------------------------------
getPageData(1); //首次進入頁面,看到的是第一頁的數(shù)據(jù)
//----------------------------------------------------------------/
//取得所有的頁數(shù)并且初始化分頁按鈕
$.post("PageService.ashx",{"action":"GetPageCount"},function(data,status){
if(status=="success"){
var tr1=$("tr>/tr>");
var pageNo=parseInt(data);
for(var i=1;i=pageNo;i++){
var td=$("td>a href=''>"+i+"/a>/td>");
tr1.append(td);
}
$("#pageNo").append(tr1);
$("#pageNo a").click(function(e){ //頁碼創(chuàng)建后,就為每一個頁碼監(jiān)聽一個click事件。
e.preventDefault(); //取消a的默認跳轉(zhuǎn)行為
getPageData($(this).html()); //點擊后就去執(zhí)行取頁數(shù)據(jù)的操作。
});
}
});
//----------------------------------------------------------------------------
});
/script>
/head>
body>
table>
    tr>
        td>
        ul id="Comment">/ul>
        /td>
    /tr>
/table>
    br />
    頁數(shù):
    table id="pageNo">/table>
/body>
/html>

ModelConvertHelper.cs(將datatable轉(zhuǎn)換為list通用類)代碼:

復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
using System.Data;
using System.Reflection;

namespace DAL
{
    public class ModelConvertHelperT> where T : new ()
    {
        public static IListT> ConvertToModel(DataTable dt)
        {
         IListT> ts = new ListT>();
        Type type=typeof(T);
        string tempName = "";
        foreach (DataRow dr in dt.Rows)
        {
            T t = new T();
            // 獲得此模型的公共屬性
            PropertyInfo[] propertys = t.GetType().GetProperties();
            foreach (PropertyInfo pi in propertys)
            {
                tempName = pi.Name;
                // 檢查DataTable是否包含此列
                if (dt.Columns.Contains(tempName))
                {
                    // 判斷此屬性是否有Setter
                    if (!pi.CanRead) continue;
                    object value = dr[tempName];
                    if (value != DBNull.Value)
                        if (pi.PropertyType == typeof(int))
                        {
                            pi.SetValue(t, Convert.ToInt32(value), null);
                        }
                        else if (pi.PropertyType == typeof(string))
                        {
                            pi.SetValue(t, value.ToString(), null);
                        }
                        //pi.SetValue(t, value, null);
                }
            }
            ts.Add(t);
        }
        return ts;
        }

   
    }
}

您可能感興趣的文章:
  • AspNetAjaxPager,Asp.Net通用無刷新Ajax分頁控件,支持多樣式多數(shù)據(jù)綁定
  • 用AJAX實現(xiàn)的無刷新的分頁實現(xiàn)代碼(asp.net)
  • asp.net jquery無刷新分頁插件(jquery.pagination.js)
  • asp.net中利用Jquery+Ajax+Json實現(xiàn)無刷新分頁的實例代碼
  • asp.net使用AJAX實現(xiàn)無刷新分頁
  • asp.net gridview分頁:第一頁 下一頁 1 2 3 4 上一頁 最末頁
  • asp.net實現(xiàn)簡單分頁實例
  • asp.net中如何調(diào)用sql存儲過程實現(xiàn)分頁
  • ASP.NET無刷新分頁簡單實現(xiàn)

標簽:大理 棗莊 衡水 萍鄉(xiāng) 江蘇 蚌埠 衢州 廣元

巨人網(wǎng)絡(luò)通訊聲明:本文標題《asp.net 無刷新分頁實例代碼》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266