User2011009134 posted
Hi All,
I just want to share with you a fix in case if you want to disable text click on radio button.
Normal behaviour of RadioButtonList is the item will get selected when we click on its text.
To avoid that, we can use label inside each list as given below.
<asp:RadioButtonList ID="rdo" runat="server" AutoPostBack="true">
<asp:ListItem Value="opt1"><label>Option 1</label></asp:ListItem>
<asp:ListItem Value="opt2"><label>Option 2</label></asp:ListItem>
<asp:ListItem Value="opt3"><label>Option 3.</label></asp:ListItem>
</asp:RadioButtonList>
Thanks