I want to select muliple values from a dropdown and insert these values in database.i m using SQL server 2005 as a backend.n jsp as frontend.
about dropdown
Collapse
X
-
Tags: None
-
Originally posted by kamsaini12I want to select muliple values from a dropdown and insert these values in database.i m using SQL server 2005 as a backend.n jsp as frontend.
Check out for the multiple select property of the dropdown box. It vil allow you to select multiple values in drop down box. Then u can get those values by using
Code:String[] value = request.getParameterValues("comboboxName");
Comment
Comment