Hi everyone.
I have found a "dirty" workaround:
I can access the controls of the WebUserControl without declaring WebUserControl1.Code:Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click 'Dim wucb As WebUserControl1 = Panel1.FindControl("wuc") Dim tb1 As TextBox = Panel1.FindControl("wuc").FindControl("TextBox1") Me.TextBox1.Text = tb1.Text 'Me.TextBox1.Text = "zzz" End Sub
Before I set out on this route, can somebody try and recreate my problem.
I just want to make sure that I am not going mad and that the better option is definately not going to work.




Reply With Quote