Hi
I was wondering if there was someone out there who could help me with a problem. I have a jsp page that uses JSTL tags to display a list. Each item in the list is a checkbox with a value.
The user can select multiple checkboxes. The problem I'm having is using the
request.getParameterValues("");
to get the values. The following displays the <input> tag that I'm using:
<input name="<c:out value="${entry.fullTreeAddress}"/>" type="checkbox" class="checkbox" value="checkbox"/>
Is there anyway to use request.getParameterValues() to get the values?
Thanks