I have a multi select list in a JSP looking like this:
<td><span><b>Delivered by </b> </span></td>
<td><select multiple name="deliveredBy">
<option value="volvo">one</option>
<option value="saab">too</option>
<option value="mercedes">three</option>
<option value="audi">four</option>
</select></td>
By selecting mutliple entries in the list and submitting the form, the entries have the same parameters. The link looks like this:
ReportingArea.jsp?member=fsafd&deliveredBy=volvo&deliveredBy=saab&deliveredBy=mercedes&deliveredBy=audi&calc=two&group1=Butter&Application=
How can I access the individual deliveredBy attributes selected in the list in my Java code ?