Thank you for posting at Dotnetfunda [Administrator]
<script> function EnableDisableRadio(flag) { document.getElementById("<%=RadioButton1.ClientID% >").disabled = flag; return false; } </script> <form id="form1" runat="server"> <asp:RadioButton ID="RadioButton1" runat="server" Text="Radio" /> <asp:Button ID="btnEnable" runat="server" Text="Enable" OnClientClick="return EnableDisableRadio(false);" /> <asp:Button ID="btnDisable" runat="server" Text="Disable" OnClientClick="return EnableDisableRadio(true);" </form>
Login to post response