I am creating a form which will update an existing record in an Access table. I am using the Request object with Form to validate all my text boxes. However, I am at a loss as to how to use Request.Form to validate a checkbox. The client side method of:
for (i = 0; i < radioGroup.length ; i++){
if (!radioGroup[i].checked == '1') errorString += "No item selected";
}
does not seem to work because the Request object is not the same as a a simple form object on the client side.
Does anyone know a good way of performing server side radio group validation?
Thx,
~AbM