blah blah blah is here! blah blah » Close
Is it possible to add a dropdownlist inside the radiobuttonlist as an item?if so how?Thanks!
Not as such but, if you're looking for a way of adding a DropDownList's items to a RadioButtonList in bulk, then you can do this:
ListItem[] items = new ListItem[DropDownList1.Items.Count];DropDownList1.Items.CopyTo(items, 0);RadioButtonList1.Items.AddRange(items);
answered one year ago by:
Got feedack? Found a bug? report it here.
1 answers
Not as such but, if you're looking for a way of adding a DropDownList's items to a RadioButtonList in bulk, then you can do this:
answered one year ago by:
17279