Hi,
I have radiobuttonlist,
<asp:RadioButtonList ID="r1" runat="server" AutoPostBack="true" OnSelectedIndexChanged="r1_SelectedIndexChanged">
<asp:ListItem Value="0" Selected="True">text1</asp:ListItem>
<asp:ListItem Value="0">text2</asp:ListItem>
<asp:ListItem Value="0">text3</asp:ListItem>
<asp:ListItem Value="1">text2</asp:ListItem>
<asp:ListItem Value="0">text4</asp:ListItem>
</asp:RadioButtonList>
if select 1,2 or 4 radio, selects the first radio. I understand the reason is that some items have similar values.
how solve a problem?
Go to the complete details ...