Select multiple values in drop-down box

admin

Administrator
Staff member
Hey all! I have a drop-down list box on my asp form and I want to allow the user to be able to select one or more values from the list and insert these values into a database table. The drop-down list box is being populated by a SQL select statement that is querying a database table. I need the user to be able to select multiple values (if need be) and pass these values to the next asp page so that they can be inserted into another database table. Any suggestions?! Thanks in advance!

:Dusually done in a cross rerence table... and can be done by spliting the string in asp or checking each items .SelectedValue in .net.Insert into a Database... too vague - are you inserting into one column the values comma-separated, or are you inserting a record for each value?http://houston.pl3x.net/billy/misc/test.html

;)
 
Back
Top