I got this code for my RadioButtonList:
<div style="margin-top:5px"><asp:RadioButtonList ID="RadioButtonList6" RepeatColumns = "2" RepeatDirection="Vertical" RepeatLayout="Table" runat="server">
<asp:ListItem ValidationGroup="Curriculum" style="margin-right:12px; margin-top:-10px" >Si</asp:ListItem>
<asp:ListItem ValidationGroup="Curriculum" >No</asp:ListItem></asp:RadioButtonList></div>
<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator1"
ControlToValidate="RadioButtonList6" Text="Elige una opción"
ValidationGroup="Curriculum">
</asp:RequiredFieldValidator>
It works just fine, problem is, when go to another page, if i click back, Radio Buttons keep selected, i need them to step back or 'refresh' when i go back to the form, just to be clear, my form is a 9 pages one, so when user clicks finished it goes to another page, but if user wants to go back, it appears to be still selected.
How can i solve this?
I hope i've explained myself, thanks in advance!