Forms - Populating radio buttons with info from a database
Below is an example of populating
radio buttons from a field in your database.
This is just an example.. when doing this for real you would
do a query to determine the existing values for all the form fields... for this example we
will populate the variable ourselves with one of 3 possible values.. "Extra
Cheese" , "Pepperoni" , or "Sausage".
<%
Topping1 = "Pepperoni"
%>
<form>
<div align="center"><center><table border="0">
<tr>
<td colspan="2" align="center">Topping 1</td>
</tr>
<tr>
<td><input type="radio" value="Extra Cheese"
name="Topping1"
<% If Topping1 = "Extra
Cheese" Then Response.Write(" checked") %>></td>
<td>Extra Cheese</td>
</tr>
<tr>
<td><input type="radio" value="Pepperoni"
name="Topping1"
<% If Topping1 = "Pepperoni"
Then Response.Write(" checked") %>></td>
<td>Pepperoni</td>
</tr>
<tr>
<td><input type="radio" value="Sausage"
name="Topping1"
<% If Topping1 = "Sausage"
Then Response.Write(" checked") %>></td>
<td>Sausage</td>
</tr>
</table>
</center></div>
</form>
And this is what the output would
look like if the field had the value "Pepperoni".
|