Guest_imported
New member
- Jan 1, 1970
- 0
I have a form posting multiple pieces of data from a multiple select list...
for example: using the GET method, the string would look like this:
receivingPage.jsp?selectList=value1&selectList=value2&selectList=value3
I can do:
String values = request.getParameter("selectList"
out.print(values);
and all I will get is:
value1
What am I doing wrong?
Thanks for any help!
Michael
for example: using the GET method, the string would look like this:
receivingPage.jsp?selectList=value1&selectList=value2&selectList=value3
I can do:
String values = request.getParameter("selectList"
out.print(values);
and all I will get is:
value1
What am I doing wrong?
Thanks for any help!
Michael