Posted on: 9/29/2014 9:05:08 PM | Views : 405

Here's my code:
<asp:CheckBox ID="chkFinancialIndusRisk" runat="server" OnCheckedChanged="chkFinIndusRisk_CheckedChanged" AutoPostBack="true" />
protected void chkFinIndusRisk_CheckedChanged(Object sender, EventArgs e)         {             if (chkFinancialIndusRisk.Checked == true)                 txtFinIndustryRisk.Visible = true;             else                 txtFinIndustryRisk.Visible = false;         }
When I check the checkbox chkFinancialIndusRisk, I want the textbox txtFinIndustryRisk to immediately become visible.
What am I missing?
< ...

Go to the complete details ...