I'd like to be able to declare a java method like doSomething(String[] dog)
which would handle:
<input type="checkbox" name="dog" value="beagle"/>
<input type="checkbox" name="dog" value="spitz"/>
or
<select name="dog" multiple="multiple">
<option value="beagle"/>
<option value="spitz"/>
</select>
but that doesn't work because if no dogs are selected, "dog" doesn't show up
at all on the query string.
If I have an array argument, it should allow for no members.
-mda
|