Hi All,
I defined a handler for the checkbox visible property but it is not called . why ?
Markup
<asp:CheckBox ID="CheckBox1" runat="server" Text="Show Panel" OnCheckedChanged="CheckBox1_CheckedChanged" />
code behind
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
Panel1.Visible = CheckBox1.Checked;
}
Thanks for you help
Go to the complete details ...