9 lines
442 B
Plaintext
9 lines
442 B
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_pageSize.ascx.cs" Inherits="GLS.WebUserControls.mod_pageSize" %>
|
|
<asp:DropDownList ID="ddlPageSize" runat="server" OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged" AutoPostBack="True">
|
|
<asp:ListItem Value="10" />
|
|
<asp:ListItem Value="15" />
|
|
<asp:ListItem Value="20" />
|
|
<asp:ListItem Value="25" />
|
|
<asp:ListItem Value="50" />
|
|
</asp:DropDownList>
|