help for enabled property
-
There are some set of server controls its property enabled= may be true or false,now in code behind how to find its current state and i am getting the controls id during runtime like this foreach(Control c in form1.Controls) { ............ } Thanks In Advance
Thanks In Advance
-
There are some set of server controls its property enabled= may be true or false,now in code behind how to find its current state and i am getting the controls id during runtime like this foreach(Control c in form1.Controls) { ............ } Thanks In Advance
Thanks In Advance
-
foreach(Control c in form1.Controls) { if(c.Enabled) MessageBox.Show("this control is enabled"); else MessageBox.Show("this control is not enabled"); }
but there is no property enabled availble there....
Thanks In Advance
-
but there is no property enabled availble there....
Thanks In Advance