Does FindControl()
work quick or not?
Have I to cache a result using a property like this or not if I search and use the same control a number of time?
private MyUserControl c;
private MyUserControl MyC {
get {
if(c == null) c = (MyUserControl)FindControl("c");
return c;
}
}