2402, 2012

Custom Paging with Numbers

By |Tags: |0 Comments

Custom Paging with Numbers .aspx File <div> PageSize: <asp:DropDownList ID="ddlPageSize" runat="server" AutoPostBack="true" OnSelectedIndexChanged="PageSize_Changed"> <asp:ListItem Text="10" Value="10" /> <asp:ListItem Text="25" Value="25" /> <asp:ListItem Text="50" Value="50" /> <asp:ListItem Text="75" Value="75" /> </asp:DropDownList> <hr /> <asp:GridView ID="gvCustomerDetails" runat="server">

Go to Top