get unchecked box

Ballu

New Member
I have a form of a table with 'checkbox':\[code\] out.print("<table><tr>"); String box_user = null; out.print("<td>"); box_user = "<input name = 'check' value=http://stackoverflow.com/questions/13714544/r" + id + " type='checkbox'>"; out.print(box_user); out.print("</td>"); out.print("</tr></table>");\[/code\]I got all the checked box by:\[code\]String[] str;str = request.getParameterValues("check");\[/code\]now, I want to get all the unchecked box. how can I get it?
 
Back
Top