How does one declare a UserControl such that the WebControls contained within it are available in CodeBehind pages?<BR><BR>As an example, if I have a label:<BR> <BR><asp:Label ID="MyLabel" Runat="server" /><BR><BR>in an ascx page (MyControl.ascx) that is registered and placed within an aspx page (MyPage.aspx) as:<BR><BR><custctl:custlbl ID="MyCustLabel" Runat="server" /><BR><BR>How do I declare "MyCustLabel" in the CodeBehind such that I can access the properties of its underlying Label control (MyLabel)? Protected WithEvents ... As ... ???<BR><BR>I see how one accesses it without CodeBehind, but can't find a demo for using it in CodeBehind...