I figured out the answer to my question I requested previously. I didn't use <bean:write > for the checkbox like everywhere else:
<logic:iterate id="customer" name="unapprovedCustomers" type="blah.blah.blah..CustomerBean"> <tr> <td align="middle"><html:checkbox property="approvedCustomerIds" value="<%= customer.getCustomerId() %>"/>" /></td> <td nowrap><bean:write name="customer" property="lastName"/></td> <td nowrap><bean:write name="customer" property="firstName"/></td> </tr> </logic:iterate> Thanks. -Shane

