I am pulling information from a database, from a table named GMAC and the field name is GMAC_Disabled. It can only contain the values of yes or no, I want the radio button with the corresponding value from the database to be checked for each record. Here is the code for the raio buttons
YES<INPUT TYPE=radio VALUE='YES")
Response.Write ("' SIZE=")
Response.Write (ScriptDataDictionary.Item ("GMAC_Disabled"))
Response.Write (" NAME=GMAC_Disabled MAXLENGTH=")
Response.Write (" >NO<INPUT TYPE=radio VALUE='NO")
Response.Write ("' SIZE=")
Response.Write (ScriptDataDictionary.Item ("GMAC_Disabled"))
Response.Write (" NAME=GMAC_Disabled MAXLENGTH=")
Response.Write (">
Any Suggestions???
YES<INPUT TYPE=radio VALUE='YES")
Response.Write ("' SIZE=")
Response.Write (ScriptDataDictionary.Item ("GMAC_Disabled"))
Response.Write (" NAME=GMAC_Disabled MAXLENGTH=")
Response.Write (" >NO<INPUT TYPE=radio VALUE='NO")
Response.Write ("' SIZE=")
Response.Write (ScriptDataDictionary.Item ("GMAC_Disabled"))
Response.Write (" NAME=GMAC_Disabled MAXLENGTH=")
Response.Write (">
Any Suggestions???