Posted on: 8/14/2014 5:58:31 AM | Views : 399

Hi..

In my application i am creating some link button controls dynamically placed in panel. Because of some events i am changing the enable status of panel as false. and same to the link buttons. But in the page it is showing like disable state. But when i click on link buttons it is triggering events.
this is my code
private void ControlDisable(Panel dup_panel)        {            dup_panel.Enabled = false;            dup_panel.CssClass = "panels disable";            foreach (Control dup_c in dup_panel.Controls)            {                if (dup_c i ...

Go to the complete details ...