Catching events from dynamically added ASP.NET User Controls
I have an ASP.NET web form which I am adding a variable number User Controls to. I have two problems: The User Controls are added to a PlaceHolder on the form in the first PageLoad event (I only add them when "(!this.IsPostback)", but then when the form is posted back, the controls are gone. Is this normal? Since other controls on t...