teodainhan
New Member
I have a User Control used in a web form. From the webform's class I wish to access a Server Control in the User Control. For example, the User Control has a textbox Server Control that I wish to write to from the webform's class. <BR><BR>Any help would really be appreciated, this has been haunting me ...<BR><BR>rpetersIf you know the id of the control within the User Control, you should be able to do this:<BR><BR>dim textbox1 as TextBox<BR><BR>textbox1 = YourUserControl.findControl("theIdHere")<BR>