Hi...
try this..... take some radiobuttons
1 <asp:RadioButton runat="server" ID="rdb1" GroupName="rg1" />
2 <asp:RadioButton runat="server" ID="rdb2" GroupName="rg1" />
3 <asp:RadioButton runat="server" ID="rdb3" GroupName="rg1" />
and write in codebehind :
1 rdb1.Checked = true;
2 rdb3.Checked = true;
3 rdb2.Checked = true;
guess what should be the output ?
i am getting rdb3 selected.
in fact you see generated HTML code, you will find that all the radio button will have "checked = true".
and so the last control in generated HTML code is displayed as selected.
are you all getting same out put..?
if yes... is it Asp.net bug..?