Posted on: 2/12/2015 11:07:54 PM | Views : 529

I have 2 radio button list  each containing 2 radio buttons each...so I would like to disable radion button present in 2nd radiobutton list based on value in first list. How can I achevie this.
<div> Which Type of Contractor will be added? <div class="spacer"></div> <asp:RadioButtonList runat="server" ID="rblContractorType"> <asp:ListItem Text="ContrEmployee" Value="C" Selected="True" /> <asp:ListItem Text="SelfEmployee" Value="A" /> </asp:RadioButtonList> </div> ...

Go to the complete details ...