Click here to Skip to main content
15,895,667 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I added a dropdown list to createuserwizard.

in the source i added following code

XML
<tr>
                            <td align="right">
                                <asp:Label ID="Application" runat="server" AssociatedControlID="Application">Application:</asp:Label>
                            </td>
                            <td>
                                <asp:DropDownList ID="DropDownList1" runat="server" BackColor="#9999FF" Font-Bold="False" Font-Italic="True" Font-Names="Tahoma" Font-Size="Larger" ForeColor="White">
                                    <asp:ListItem>----SELECT VALUE----</asp:ListItem>
                                    <asp:ListItem>CRX</asp:ListItem>
                                    <asp:ListItem>QA</asp:ListItem>
                                    <asp:ListItem>MFDL</asp:ListItem>
                                    <asp:ListItem>DMS</asp:ListItem>
                                    <asp:ListItem>CPGN</asp:ListItem>
                                    <asp:ListItem>INFOVIEW</asp:ListItem>
                                </asp:DropDownList>
                                &nbsp;&nbsp;
                                <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
                                    ControlToValidate="DropDownList1"
                                    ErrorMessage="Application should be selected." Font-Size="Larger"
                                    ToolTip="Application should be selected." ValidationGroup="CreateUserWizard1">*</asp:RequiredFieldValidator>

                            </td>
                        </tr>


Now the problem is how to retrive the selected valu in dropdownlist

I was trying to send that value to a string as below

string abc = CreateUserWizard1.Dropdownlist1;(I am not getting dropdownlist from the list CreateUserWizard1.----
Posted

1 solution

C#
this is the syntax to retrive the selected value in dropdown list that was added.

string sel = ((DropDownList)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("DropDownList1")).SelectedItem.Text.Trim();

C#

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900