Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing Multiple Select values into JSP

Status
Not open for further replies.

riches85

Programmer
Nov 13, 2002
59
US
I have a quick question. I have a jsp form that has a select field that allows users to select multiple values named "Positions". When i try to use request.getParameter("Positions") I get the first value instead of a string of values like I had hoped. What is the best way to pull the values from the form and ultimately use it to update the database? Any help would be great. Thanks
 
java.lang.String[] = javax.servlet.ServletRequest.getParameterValues(java.lang.String);
 
Thanks.....I knew it was something I was overlooking
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top