Get UserControl Dropdown values
hi friends,i have a one dropdownlist in usercontrol and when i select a button after select usercontrol dropdownlist , dropdown values pass to another aspx normal pages but it does not pass selected values always send to selected item shows "-- Choose Type --"
In Usercontrol ,dropdown
<asp:DropDownList ID="ddlType" runat="server" Width="165px" Font-Bold="False"
Enabled="true" Height="16px" onchange="javascript:return EnableType();"
AutoPostBack="True">
<asp:ListItem Value="CIT">-- Choose Type --</asp:ListItem>
<asp:ListItem Value="A">Add</asp:ListItem>
<asp:ListItem Value="S">SUB</asp:ListItem>
</asp:DropDownList>
please help me