How to process a CheckboxList multiple selection.

  • Thread starter Thread starter Jensen bredal
  • Start date Start date
J

Jensen bredal

Hello,
Can someone guide me in how i may process a multiple selection on a
databound checkboxlist?
The checkboxlist is bound to a table of product category. The product
category id is an FK in the product list.

When multiple selction are made on the checkBoxList, how may i best process
the selection to retrive the corresponding products?


I have ides how to accomplish this, but i think there should be more
intuitive ways to do it.

Any comments will be highly appreciated.

Many thanks
JB
 
Just loop through the Items collection and check if the ListItem's
Selected property returns true.
 
Back
Top