国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

.net GridView分頁模板的實例代碼

2024-07-10 13:17:12
字體:
來源:轉載
供稿:網友

復制代碼 代碼如下:


//要在GridView中加入如下屬性(前臺還是后臺看你的習慣了。)

//實現分頁

AllowPaging="true"

//一頁數據10行

 PageSize="10"

// 分頁時觸發的事件
OnPageIndexChanging="gvwDesignationName_PageIndexChanging"

//在服務器事件里

protected void gvwDesignationName_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gvwDesignationName.PageIndex=e.newIndex;

bingDesignatioonName();
}


//這里我給出一個通用顯示分頁的模板

<PagerTemplate>
                當前第:
                //((GridView)Container.NamingContainer)就是為了得到當前的控件
                <asp:Label runat="server" Text="<%# ((GridView)Container.NamingContainer).PageIndex + 1 %>"></asp:Label>
                頁/共:
                //得到分頁頁面的總數
                <asp:Label runat="server" Text="<%# ((GridView)Container.NamingContainer).PageCount %>"></asp:Label>
                頁
                 //如果該分頁是首分頁,那么該連接就不會顯示了.同時對應了自帶識別的命令參數CommandArgument
                <asp:LinkButton runat="server" CommandArgument="First" CommandName="Page"
                    Visible='<%#((GridView)Container.NamingContainer).PageIndex != 0 %>'>首頁</asp:LinkButton>
                <asp:LinkButton runat="server" CommandArgument="Prev"
                    CommandName="Page" Visible='<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>'>上一頁</asp:LinkButton>
               //如果該分頁是尾頁,那么該連接就不會顯示了
                <asp:LinkButton runat="server" CommandArgument="Next" CommandName="Page"
                    Visible='<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>'>下一頁</asp:LinkButton>
                <asp:LinkButton runat="server" CommandArgument="Last" CommandName="Page"
                    Visible='<%# ((GridView)Container.NamingContainer).PageIndex != ((GridView)Container.NamingContainer).PageCount - 1 %>'>尾頁</asp:LinkButton>
                轉到第
                <asp:TextBox runat="server" Text='<%# ((GridView)Container.Parent.Parent).PageIndex + 1 %>' />頁
                //這里將CommandArgument即使點擊該按鈕e.newIndex 值為3
                <asp:LinkButton runat="server" CausesValidation="False" CommandArgument="-2"
                    CommandName="Page" Text="GO" />
            </PagerTemplate>

//對應該事件中代碼為


 protected void gvwDesignationName_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        // 得到該控件
        GridView theGrid = sender as GridView;
        int newPageIndex = 0;
        if (e.NewPageIndex==-3)
        {
            //點擊了Go按鈕
            TextBox txtNewPageIndex = null;

            //GridView較DataGrid提供了更多的API,獲取分頁塊可以使用BottomPagerRow 或者TopPagerRow,當然還增加了HeaderRow和FooterRow
            GridViewRow pagerRow = theGrid.BottomPagerRow;

            if (pagerRow != null)
            {
                //得到text控件
                txtNewPageIndex = pagerRow.FindControl("txtNewPageIndex") as TextBox;   
            }
            if ( txtNewPageIndex!= null)
            {
                //得到索引
                newPageIndex = int.Parse(txtNewPageIndex.Text) - 1;
            }
        }
        else
        {
            //點擊了其他的按鈕
            newPageIndex = e.NewPageIndex;
        }
        //防止新索引溢出
        newPageIndex = newPageIndex < 0 ? 0 : newPageIndex;
        newPageIndex = newPageIndex >= theGrid.PageCount ? theGrid.PageCount - 1 : newPageIndex;

        //得到新的值
        theGrid.PageIndex = newPageIndex;

         //重新綁定
        bingDesignatioonName();
    }

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 石棉县| 阿巴嘎旗| 晋城| 胶南市| 建水县| 慈利县| 罗山县| 沙湾县| 兴山县| 喀喇沁旗| 会昌县| 大理市| 三都| 赤峰市| 微山县| 内黄县| 即墨市| 拜泉县| 怀柔区| 西乌珠穆沁旗| 东乡| 南宁市| 永泰县| 阿尔山市| 吉木萨尔县| 五原县| 东海县| 沅江市| 年辖:市辖区| 渭南市| 敦煌市| 闽侯县| 商丘市| 班戈县| 德格县| 德州市| 定结县| 二连浩特市| 玉门市| 祥云县| 西吉县|