Przed chwilą uratował mi trochę czasu :) [Był problem z findcontrol dla masterpage-sa, gdy kontrolki były ukryte wewnątrz wizard-a.]
private Control FindControl(Control parent, string id)
{
if (parent.ID == id)
{ return parent; }
foreach (Control child in parent.Controls)
{
Control recurse = FindControl(child, id);
if (recurse != null)
{ return recurse; }
}
return null;
}
Brak komentarzy:
Prześlij komentarz