Brian Burridge wrote:

> I have been using request.getParameter() to get the values of a specific
> HTML form sent through get or post. But, how do I get the multiple
> values that might come back if I use a checkbox in my HTML form? If I do
> the getParamter, I would only get one of the values back because the
> HTTP would be like this
> http://www.someurl.com/form.jsp?vname=1&vname=2&vname=3.
>
> I need to get all the values for "vname" back. Is it stored in some type
> of array?
>

What's wrong with request.getParameterValues()?

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to