I have three radio buttons and when I select one and switch to the next page and come back to the old page,I see two of the radio buttons selected.
This is working correctly in IE but not in Netscape.
Can anyone help?
here is a clip of the javasc,sorry about the content...it is a medic related project ..
<tr align="left">
<td><br>
<label class="TableField" for="Incontinence" Id="Incont"> Incontinence: Does not include stress incontinence (small amounts of urine leaking during sneezing,</label>
<label class="TableField" for="Incontinence" Id="Incont"> coughing or other exertion)</label>
</td>
</tr>
<td>
<input type=radio name="TolietIncont" value="" checked><label>Not Applicable</label>
<br>
<% if checkEquip("TLTHLP","006") Then%>
<input type=radio name="TolietIncont" value="TLTHLP006" checked><label>Has incontinence daily</label>
<% else%>
<input type=radio name="TolietIncont" value="TLTHLP006" ><label>Has incontinence daily</label>
<% end if%>
<br>
<% if checkEquip("TLTHLP","005") Then%>
<input type=radio name="TolietIncont" value="TLTHLP005" checked><label>Has incontinence less than daily but at least once per week</label>
<% else%>
<input type=radio name="TolietIncont" value="TLTHLP005" ><label>Has incontinence less than daily but at least once per week</label>
<% end if%>
</td>
Thanks,
tina