blah blah blah is here! blah blah » Close

up1down
link

Is it possible to add a dropdownlist inside the radiobuttonlist as an item?

if so how?

Thanks!

last answered one year ago

1 answers

up1down
link

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);

Feedback