User controls

  • Thread starter Thread starter SOS
  • Start date Start date
S

SOS

Hi guys ,
i have 5 user control in a webform.
how can i know that wich of them load earlyer ?
 
A simple FindControl("controlname") should return a reference to the control
if it has been loaded and null if not. Not sure if it has a significant
performance penalty or not but this seems the simplest way.
 
Back
Top