Posted on: 2/21/2014 8:38:42 PM | Views : 704

I have a dropdown list that I need to use multiple times on the same form. Is it possible to use the same list multiple times on a form?
Ex.
<asp:DropDownList ID="ddlName" runat="server"> <asp:ListItem Text="Select" Value=""></asp:ListItem> <asp:ListItem Text="1" Value="1"></asp:ListItem> <asp:ListItem Text="2" Value="2"></asp:ListItem> <asp:ListItem Text="3" Value="3"></asp:ListItem> </asp:DropDownList>
<asp:DropDownList ID="ddlName" runat="server"> <asp:ListItem Text="Select" Value=""></asp:ListItem> <asp:ListItem Text="1" Value="1"></asp:ListItem> <asp:ListItem Text="2" Value="2"></asp:ListItem>  <asp:ListItem Text=&qu ...

Go to the complete details ...