asp.net asp gridview 控件 部分 知識 欄目 ASP 简体版
原文   原文鏈接
<PagerTemplate>

            <br />         
            <asp:Label ID="lblPage" runat="server" Text='<%# "第" + (((GridView)Container.NamingContainer).PageIndex + 1)  + "頁/共" + (((GridView)Container.NamingContainer).PageCount) + "頁" %> '></asp:Label>         
            <asp:LinkButton ID="lbnFirst" runat="Server" Text="首頁"  Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>' CommandName="Page" CommandArgument="First" ></asp:LinkButton>        
            <asp:LinkButton ID="lbnPrev" runat="server" Text="上一頁" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != 0 %>' CommandName="Page" CommandArgument="Prev"  ></asp:LinkButton>        
            <asp:LinkButton ID="lbnNext" runat="Server" Text="下一頁" Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != (((GridView)Container.NamingContainer).PageCount - 1) %>' CommandName="Page" CommandArgument="Next" ></asp:LinkButton>         
            <asp:LinkButton ID="lbnLast" runat="Server" Text="尾頁"   Enabled='<%# ((GridView)Container.NamingContainer).PageIndex != (((GridView)Container.NamingContainer).PageCount - 1) %>' CommandName="Page" CommandArgument="Last" ></asp:LinkButton>         
            到第

                <asp:TextBox ID="txtPageNumber" runat="server"></asp:TextBox>
                <asp:Button ID="btnPage" Text="Go" runat="server" CommandName="MyPage" />
            </PagerTemplate>

 

GridView---數據綁定控件之數據表格網站

什麼是數據源server

  經過數據源控件能夠直接綁定數據 2.能夠設置「自動套用格式」來改變樣式(外觀) 3.能夠經過數據源控制實如今線編輯、刪除、選中 4.經過自動生成列,可使GridView從數據源中自動提取列信息 5.GridView能夠包含多種列類型:BoundField(綁定列)、CheckBoxField(複選框列)、HyperLinkField(超連接列)、、ImageField(圖片列)、ButtonField(按鈕列)、CommonField(命令列)、TemplateField(模板列) 6.GridView內置了不少命令:edit、delete、update、cancel、select、自定義命令blog

 

  其中,TemplateField模板可分爲:內容模板、編輯行模板、交替行模板、頭模板、尾模板圖片

 

  今天,給你們共享一個關於網站開發中分頁的代碼,但願能夠用上哦,小夥伴們開發

相關文章
相關標籤/搜索
每日一句
    每一个你不满意的现在,都有一个你没有努力的曾经。
本站公眾號
   歡迎關注本站公眾號,獲取更多信息