jasonkeller
Programmer
How can I make the following checkbox form (1) work like the radio button input form (2), but with out the off option. I would like to just check on or check off and then update the access database
(1)<input type="checkbox" name="white" value="yes"
<cfif #white# IS "yes"> checked</cfif>>Yes
(2)<input type="radio" name="white" value="yes"
<cfif #white# IS "yes"> checked</cfif>>Yes
<input type="radio" name="white" value="no"
<cfif #white# IS "no"> checked</cfif>>No
(1)<input type="checkbox" name="white" value="yes"
<cfif #white# IS "yes"> checked</cfif>>Yes
(2)<input type="radio" name="white" value="yes"
<cfif #white# IS "yes"> checked</cfif>>Yes
<input type="radio" name="white" value="no"
<cfif #white# IS "no"> checked</cfif>>No