熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

GridView分頁的實現以及自定義分頁樣式功能實例

2022-06-13   來源: .NET編程 
本文為大家詳細介紹下GridView實現分頁並自定義的分頁樣式具體示例代碼如下有想學習的朋友可以參考下哈希望對大家有所幫助  

  GridView分頁的實現

復制代碼 代碼如下:
要在GridView中加入
//實現分頁
AllowPaging="true"
//一頁數據
PageSize=""
// 分頁時觸發的事件
OnPageIndexChanging="gvwDesignationName_PageIndexChanging"

  
在服務器事件裡

復制代碼 代碼如下:
protectedvoid gvwDesignationName_PageIndexChanging(object sender GridViewPageEventArgs e)
{
gvwDesignationNamePageIndex=enewIndex;
bingDesignatioonName();
}

  
這裡我給出一個通用顯示分頁的模板(網上搜的自己給出注釋)

復制代碼 代碼如下:
<PagerTemplate>
當前第:
//((GridView)ContainerNamingContainer)就是為了得到當前的控件
<asp:Label ID="LabelCurrentPage" runat="server" Text="<%# ((GridView)ContainerNamingContainer)PageIndex + %>"></asp:Label>
頁/共:
//得到分頁頁面的總數
<asp:Label ID="LabelPageCount" runat="server" Text="<%# ((GridView)ContainerNamingContainer)PageCount %>"></asp:Label>

//如果該分頁是首分頁那麼該連接就不會顯示了同時對應了自帶識別的命令參數CommandArgument
<asp:LinkButton ID="LinkButtonFirstPage" runat="server" CommandArgument="First" CommandName="Page"
Visible=<%#((GridView)ContainerNamingContainer)PageIndex != %>>首頁</asp:LinkButton>
<asp:LinkButton ID="LinkButtonPreviousPage" runat="server" CommandArgument="Prev"
CommandName="Page" Visible=<%# ((GridView)ContainerNamingContainer)PageIndex != %>>上一頁</asp:LinkButton>
//如果該分頁是尾頁那麼該連接就不會顯示了
<asp:LinkButton ID="LinkButtonNextPage" runat="server" CommandArgument="Next" CommandName="Page"
Visible=<%# ((GridView)ContainerNamingContainer)PageIndex != ((GridView)ContainerNamingContainer)PageCount %>>下一頁</asp:LinkButton>
<asp:LinkButton ID="LinkButtonLastPage" runat="server" CommandArgument="Last" CommandName="Page"
Visible=<%# ((GridView)ContainerNamingContainer)PageIndex != ((GridView)ContainerNamingContainer)PageCount %>>尾頁</asp:LinkButton>
轉到第
<asp:TextBox ID="txtNewPageIndex" runat="server" Width="px" Text=<%# ((GridView)ContainerParentParent)PageIndex + %> />頁
//這裡將CommandArgument即使點擊該按鈕enewIndex 值為
<asp:LinkButton ID="btnGo" runat="server" CausesValidation="False" CommandArgument=""
CommandName="Page" Text="GO" />
</PagerTemplate>

  
對應該事件中代碼為

復制代碼 代碼如下:

  
protected void gvwDesignationName_PageIndexChanging(object sender GridViewPageEventArgs e)
{
// 得到該控件
GridView theGrid = sender as GridView;
int newPageIndex = ;
if (eNewPageIndex==)
{
//點擊了Go按鈕
TextBox txtNewPageIndex = null;
//GridView較DataGrid提供了更多的API獲取分頁塊可以使用BottomPagerRow 或者TopPagerRow當然還增加了HeaderRow和FooterRow
GridViewRow pagerRow = theGridBottomPagerRow;
if (pagerRow != null)
{
//得到text控件
txtNewPageIndex = pagerRowFindControl("txtNewPageIndex") as TextBox;
}
if ( txtNewPageIndex!= null)
{
//得到索引
newPageIndex = intParse(txtNewPageIndexText) ;
}
}
else
{
//點擊了其他的按鈕
newPageIndex = eNewPageIndex;
}
//防止新索引溢出
newPageIndex = newPageIndex < ? : newPageIndex;
newPageIndex = newPageIndex >= theGridPageCount ? theGridPageCount : newPageIndex;
//得到新的值
theGridPageIndex = newPageIndex;
//重新綁定
bingDesignatioonName();
}


From:http://tw.wingwit.com/Article/program/net/201311/14289.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.