
Newbie question:
I am trying to retrive value from Access DB into a form for updating. All my textboxes retrieve values correctly, but my checkboxes display empty.
My coloumn (say: Toys) contains the value "Yes" when a supplier carries toys and contains no value if they don't carry them.
My code looks like this:
<input name="Toys" value="Yes" <% If Request.Form("Toys") = "Yes" Then Response.Write ("checked")%> type="checkbox"> Toys</td>
What am I doing wrong?
Thanks
M