views:

67

answers:

1

In my aspx registration page i have more then 6 item available in my list box, I am allowing multiple selection on it..I am not sure about how many items i will select each and every time. then how i have to store it into dataset and how to pass it as a mysql paramter...

A: 

See ListBox.SelectionMode property. Loop through the selected items to add into your datasource.

KMan