Checkbox Update

P

Paul

Hello all...I have learned so much in the last week about forms and DB
control...I LOVE IT!!!

I need a little help, I have a form that displays a table with some
information and also the results of some checkboxes (cells in the table that
say ON for the checkbox info). I then click a hyperlink in the table that
sends the key to an Update_Form.asp where the person can update/change the
information and then resubmit. The problem is the checkboxes are blank on
this Update_Form, so if they submit it, whatever was ON before is gone:( I
would like to know how to update the checkbox so that it shows if it is
checked or not when the Update_Form.asp pulls up. I put the results of the
checkbox in a text box to make sure they are getting passed from one form to
another and they are, but I think I am missing something small. Here is the
html code of one of the check boxes. Can anyone suggest anything?
Thanks in advanced for your time!!!

<input type="checkbox" name="Grade5" value="ON"><p>
 
Top