主頁 > 知識(shí)庫 > GridView分頁代碼簡單萬能實(shí)用

GridView分頁代碼簡單萬能實(shí)用

熱門標(biāo)簽:使用智能電話機(jī)器人違法嗎 淘寶地圖標(biāo)注如何做 保山電話外呼管理系統(tǒng)怎么用 朝陽市地圖標(biāo)注 電話機(jī)器人廣告話術(shù) 東莞語音電銷機(jī)器人排名 外呼系統(tǒng)用員工身份證 蘇州銷售外呼系統(tǒng)預(yù)算 太原外呼電銷機(jī)器人費(fèi)用
復(fù)制代碼 代碼如下:

asp:GridView ID="GridViewHistory" runat="server" AutoGenerateColumns="False"
CssClass="vip_table" GridLines="None" BorderStyle="None" CellPadding="0"
ShowHeader="False" AllowPaging="true" PageSize="20"
onpageindexchanging="GridViewHistory_PageIndexChanging">
PagerTemplate>
asp:LinkButton ID="lb_firstpage" runat="server" onclick="lb_firstpage_Click">首頁/asp:LinkButton>
asp:LinkButton ID="lb_previouspage" runat="server"
onclick="lb_previouspage_Click">上一頁/asp:LinkButton>
asp:LinkButton ID="lb_nextpage" runat="server" onclick="lb_nextpage_Click">下一頁/asp:LinkButton>
asp:LinkButton ID="lb_lastpage" runat="server" onclick="lb_lastpage_Click">尾頁/asp:LinkButton>
第asp:Label ID="lbl_nowpage" runat="server" Text="%#GridViewHistory.PageIndex+1 %>" ForeColor="#db530f">/asp:Label>頁/共asp:Label
ID="lbl_totalpage" runat="server" Text="%#GridViewHistory.PageCount %>" ForeColor="#db530f">/asp:Label>頁
/PagerTemplate>


后臺(tái)代碼:
復(fù)制代碼 代碼如下:

//分頁
protected void GridViewHistory_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridViewHistory.PageIndex = e.NewPageIndex;
dataBinding();
}
protected void Button_search_Click(object sender, EventArgs e)
{
dataBinding();
}
protected void lb_firstpage_Click(object sender, EventArgs e)
{
this.GridViewHistory.PageIndex = 0;
dataBinding();
}
protected void lb_previouspage_Click(object sender, EventArgs e)
{
if (this.GridViewHistory.PageIndex > 0)
{
this.GridViewHistory.PageIndex--;
dataBinding();
}
}
protected void lb_nextpage_Click(object sender, EventArgs e)
{
if (this.GridViewHistory.PageIndex this.GridViewHistory.PageCount)
{
this.GridViewHistory.PageIndex++;
dataBinding();
}
}
protected void lb_lastpage_Click(object sender, EventArgs e)
{
this.GridViewHistory.PageIndex = this.GridViewHistory.PageCount;
dataBinding();
}

dataBinding()為GridViewHistory的數(shù)據(jù)源綁定事件
您可能感興趣的文章:
  • AspNetPager+GridView實(shí)現(xiàn)分頁的實(shí)例代碼
  • asp.net中g(shù)ridview的查詢、分頁、編輯更新、刪除的實(shí)例代碼
  • GridView高效分頁和搜索功能的實(shí)現(xiàn)代碼
  • .net GridView分頁模板的實(shí)例代碼
  • asp.net中讓Repeater和GridView支持DataPager分頁
  • jquery+ashx無刷新GridView數(shù)據(jù)顯示插件(實(shí)現(xiàn)分頁、排序、過濾功能)
  • 利用jQuery 實(shí)現(xiàn)GridView異步排序、分頁的代碼
  • GridView自定義分頁的四種存儲(chǔ)過程
  • ASP.Net2.0 GridView 多列排序,顯示排序圖標(biāo),分頁
  • GridView分頁的實(shí)現(xiàn)(通用分頁模板)

標(biāo)簽:洛陽 西藏 綏化 阿里 潛江 呼倫貝爾 運(yùn)城 克拉瑪依

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《GridView分頁代碼簡單萬能實(shí)用》,本文關(guān)鍵詞  GridView,分頁,代碼,簡單,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《GridView分頁代碼簡單萬能實(shí)用》相關(guān)的同類信息!
  • 本頁收集關(guān)于GridView分頁代碼簡單萬能實(shí)用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章