This is pretty simple, but I am drawing a blank....
I have a display of four radio buttons, what is the html code to make Selection 1 as the default selection?
<tr>
<td>
<input type="radio" name="AppForm_Status" value="1">
Selection 1
</td>
</tr>
<tr>
<td>
<input type="radio" name="AppForm_Status" value="2">
Selection 2
</td>
</tr>
<tr>
<td>
<input type="radio" name="AppForm_Status" value="3">
Selection 3
</td>
</tr>
I have a display of four radio buttons, what is the html code to make Selection 1 as the default selection?
<tr>
<td>
<input type="radio" name="AppForm_Status" value="1">
Selection 1
</td>
</tr>
<tr>
<td>
<input type="radio" name="AppForm_Status" value="2">
Selection 2
</td>
</tr>
<tr>
<td>
<input type="radio" name="AppForm_Status" value="3">
Selection 3
</td>
</tr>