Posted on: 5/8/2015 4:04:52 PM | Views : 613

Hi All,
   I have two radio buttons on my web page. They are inside the Ajax control panel. If the user clicks on one radio button, I want one controls to be enabled and if the users clicks on another radio button and then I want that control to be disabled. Below is my code:
<asp:UpdatePanel ID="UpdatePanel2" runat="server"> <ContentTemplate> <asp:RadioButton ID="rdbYear" runat="server" AutoPostBack="true" Checked="true" GroupName="Fiscal" OnCheckedChanged="rdbFiscalYear_CheckedChanged" Text="Fiscal Year" /> &a ...

Go to the complete details ...