Create a Repeater control in ASP.Net
问题 I'm using two drop down and bind values to that drop down. Now am adding a new button add_new. I want to create the above drop downs below when I click the add button and maintain the previous selected values. Please help me to do this. 回答1: You can achieve the desired result using Repeater control of ASP.Net. You can create any type of template as you wish, see the code below: ASPX: <asp:Repeater ID="Repeater1" runat="server"> <ItemTemplate> <asp:DropDownList ID="DropDownList1" runat="server