Re: Checkbox value capture in Servlet from JSP
Posted By:
Eric_Getchell
Posted On:
Monday, April 19, 2004 04:08 AM
Checkboxes work a little differently than other HTML controls. If the value is unchecked, it will not show up on the HTTP parameter list.
Try checking some boxes and examining what exists in the getParameterNames() method. You should only see the names of the boxes you checked.