about dropdown

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kamsaini12
    New Member
    • Sep 2007
    • 1

    about dropdown

    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.
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by kamsaini12
    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.
    So what's the problem? Are you stuck with some code?

    Comment

    • madhoriya22
      Contributor
      • Jul 2007
      • 251

      #3
      Originally posted by kamsaini12
      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.
      Hi,
      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");
      and u r done.

      Comment

      Working...