Hi there,
I have found ASP.Net Gridview to load large data on Aspsnippets.com.
How to manipulate the PageSize based on what user select on Dropdownlist And auto refresh the Gridview after user select it?
Here is the dropdownlist I would like to insert.
Thank you.
<asp:DropDownList ID="ddlPageSize" runat="server" AutoPostBack="true" OnSelectedIndexChanged="OnSelectedIndexChanged">
<asp:ListItem Text="10" Value="10" />
<asp:ListItem Text="25" Value="25" />
<asp:ListItem Text="100" Value="100" />
<asp:ListItem Text="1000" Value="1000" />
<asp:ListItem Text="All" Value="All" />
</asp:DropDownList>