Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my code
<asp:RadioButton ID="rdograph" runat="server" GroupName="rdo1" Text="Summary in Graphs" CssClass="rdograph" Checked="true" AutoPostBack="true" OnCheckedChanged="rdograph_CheckedChanged"/>

C#
protected void rdograph_CheckedChanged(object sender, EventArgs e)
  {
       if  (rdoresponse.Checked)
      {
          divres.Visible = true;
          
      }
Posted

1 solution

You should use debugger at your Application, only debugger will show that why your code is working and why not.
 
Share this answer
 
Comments
Member 10688269 21-Mar-14 9:04am    
i have also try that.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900