Webform gridView分页

来源:互联网 发布:我的手机淘宝怎么打不开 编辑:程序博客网 时间:2024/06/07 02:48

分页详解:
从工具栏中拖拽Gridview数据控件;
(1)设置数据 AllowPaging=”True”;并自定义每页显示的数目 PageSize=”10”;
同时设置页索引改变事件:OnPageIndexChanging=“GridView1_PageIndexChanging”

 protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)        {            this.GridView1.PageIndex = e.NewPageIndex;            DataBind();        }

(2)接下来添加分页模板

//在该模板里面定义分页相应的按钮<PagerTemplate> <table style="font-size: 12px; width: 100%;">                        <tr>                            <td style="text-align: right"><asp:Label ID="lblPageIndex" runat="server" Text="<%#((GridView)Container.Parent.Parent).PageIndex+1 %>"></asp:Label>页                                /共<asp:Label ID="lblPageCount" runat="server" Text="<%#((GridView)Container.Parent.Parent).PageCount %>"></asp:Label>页&nbsp;&nbsp;                                <asp:LinkButton ID="lbFirstPage" runat="server" CommandArgument="First" CommandName="Page" Visible="<%#((GridView)Container.Parent.Parent).PageIndex!=0 %>">首页</asp:LinkButton>                                <asp:LinkButton ID="lbPrevPage" runat="server" CommandArgument="Prev" CommandName="Page" Visible="<%#((GridView)Container.Parent.Parent).PageIndex!=0 %>">上一页</asp:LinkButton>                                <asp:LinkButton ID="lbNextPage" runat="server" CommandArgument="Next" CommandName="Page" Visible="<%#((GridView)Container.NamingContainer).PageIndex!=((GridView)Container.NamingContainer).PageCount-1 %>">下一页</asp:LinkButton>                                <asp:LinkButton ID="lbLastPage" runat="server" CommandArgument="Last" CommandName="Page" Visible="<%#((GridView)Container.NamingContainer).PageIndex!=((GridView)Container.NamingContainer).PageCount-1 %>">尾页</asp:LinkButton>                                <asp:TextBox ID="txtNewPageIndex" runat="server" Text="<%#((GridView)Container.Parent.Parent).PageIndex+1 %>" Width="20px"></asp:TextBox>                                <asp:LinkButton ID="btnGo" runat="server" CausesValidation="false" CommandArgument="go" CommandName="Page" Text="跳转" OnClick="btnGo_Click"></asp:LinkButton>                            </td>                        </tr>                    </table></PagerTemplate>

处理跳转按钮的事件:

  protected void btnGo_Click(object sender, EventArgs e)        {            if (((LinkButton)sender).CommandArgument.ToLower().ToString().Equals("go"))            {                TextBox numBox = (TextBox)this.GridView1.BottomPagerRow.FindControl("txtNewPageIndex");                int count = int.Parse(numBox.Text);                GridView1.PageIndex = count - 1;                DataBind();            }        }
0 0