HI
I have 2 radio button in my page
now i can click both of them i want when i select Radionbutton1 then Radiobutton2 be deselect i mean i can just click on one of radiobutton
thanks alot
You will need to set same GroupName property for both RadioButtons
<asp:RadioButton ID="RadioButton2" runat="server" GroupName ="Radio" /> <asp:RadioButton ID="RadioButton1" runat="server" GroupName ="Radio" />
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.