hi,
The jsp page has multiple check boxes (retrieved from DB),....
<input type="checkbox" name="selecttype" value="<%=rs2.getString("description") %>"/>
I've read these values in to servlet page using
String[] selecttype=request.getParameterValues("selecttype");
the 'selecttype' now contains only selected checkbox values.
but i want to retrieve values of unchecked checkboxes.
Pls help me with this.
ThanQ,
Beanboy :-)