do all the ifs first and then do one insert at the end.
Code:
if request.form("object") = "1" then
varname = "yes"
else
varname = "no"
end if
then just do that for each checkbox.
at the end, do the insert
Code:
UPDATE TABLE name
SET columnname = ' varname',
columnname2 = 'varname2',
etc
WHERE uniqueID = 'whatever your identifier or however else your identifing the record'