How to set radio button checked by default in struts html tag ?
<html:radio name="RegisterForm" property="Group" value="<%=Contant.Male%>"/><label>Male</label><BR>
<html:radio name="RegisterForm" property="Group" value="<%=Contant.Female%>"/><label>Female</label>
Here, i have to set Male as default one. Thanks in advance.