|
Hi all,
having problems getting some checkboxes to display values from a sql server DB.
I have 3 checkboxes on a form, and the first record has two of them checked and the middle one empty so
Chk1 = 1
chk2 = 0
chk3 = 1
but they all display unchecked when I test the asp file.
The checkbox properties are as below.
chk1
checked value = checkbox
Dynamic - check if : <%= (rstConcept.Fields.Item("chk1").Value) %>
Equal to : 1
chk2
checked value = checkbox
Dynamic - check if : <%= (rstConcept.Fields.Item("chk2").Value) %>
Equal to : 1
chk3
checked value = checkbox
Dynamic - check if : <%= (rstConcept.Fields.Item("chk3").Value) %>
Equal to : 1
Any help welcomed...
|