showing radio button using struts help
would like to display something like
ConfirmradioButton Yes
radioButtonNo
how to do this?
I tried but getting like
Confirm
radioButton
radioButton
tr>
<td>
<bean:message key="lbl.confirm"/> <bean:message key="question"/>
</td>
<td>
<tr>
<td>
<html:radio name="Form1" property="confirm" value="true" title="Yes"/>
</td>
</tr>
<tr>
<td>
<html:radio name="Form1" property="confirm" value="false" title="No"/>
</td>
</tr>
</td>
<td></td>
</tr>
Thanks.

