J
jorge
Hello all,
Why is it that:
I have a WebForm and on Page_Load:
Control ctrl = LoadControl("WebUserControl1.ascx");
PlaceHolder1.Controls.Add(ctrl);
And a WebUserControl that contains a TextBox
I have to wait until the TextChanged event fires on the
webusercontrol to retrieve the textbox text property
How can I retrieve the value of the textbox before that
event fires?
This is an issue because i add the textboxes dynamicly
and can not have the handling of the textboxes on the
usercontrol.
Thanks.
/ jorge
Why is it that:
I have a WebForm and on Page_Load:
Control ctrl = LoadControl("WebUserControl1.ascx");
PlaceHolder1.Controls.Add(ctrl);
And a WebUserControl that contains a TextBox
I have to wait until the TextChanged event fires on the
webusercontrol to retrieve the textbox text property
How can I retrieve the value of the textbox before that
event fires?
This is an issue because i add the textboxes dynamicly
and can not have the handling of the textboxes on the
usercontrol.
Thanks.
/ jorge