Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do while not rs.eof
'# check the value in db to see if this radio needs checking...
If rs("radio_checked") = "y" then strChecked = " Checked"
'# Write out the radio, and the title of the radio...
Response.Write(<input type='radio' name='radio' value='" & rs("record_id") & "'" & strChecked & ">" & rs("record_title") & <br>)
rs.movenext
loop