As you are doing
DropDownCheckBoxes
, so you must be doing something to bind CheckBoxes to the
DropDownList
items.
So, if you code the following...
chList= DropDownCeheckBoxesListControl1.SelectedItem.Text
It will always return one item.
You need to loop through those
CheckBoxes
, which are appended to
DropDownList
items and check which one are checked. That will return you all the selected items.