Why I cant make controls visible?

Northrop

Newcomer
Joined
Apr 9, 2004
Messages
4
private void Page_Load(object sender, System.EventArgs e)
{
foreach(Control ctl in this.Controls)
{
ctl.Visible = true;
}
}

does nothing with controls on Web-page
 
you controls might be in panels, or other containers. The above code will only effect controls placed directly on the webform.
 
Back
Top