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