D Dave Oct 4, 2004 #1 Ho can I (without loop) copy one DropDownList items to another DropDownList items?
G Guest Oct 4, 2004 #2 hi Dave, you can do it this way DropDownList2.DataSource = DropDownList1.Items; DropDownList2.DataBind(); HTH srini
hi Dave, you can do it this way DropDownList2.DataSource = DropDownList1.Items; DropDownList2.DataBind(); HTH srini