User Controls from within another User Control?

By_ONUR

New Member
Is it possible to call a User Control from within another User Control? I am getting a parcing error when I try it, so before I go any further, I'd simply like to find out if it is possible.<BR><BR>Thanks!Yes its possible. In fact... a usercontrol is used just like any other control. Post your error. =]Simple example<BR>'script<BR>'load control1 into a panel or you can load a hyperlink or another control<BR>body.Controls.Add( Page.LoadControl("control1.ascx") )<BR><BR><!---html---><BR><!---display panel that contains another control---><BR><asp:Panel id="body" runat=server/><BR><BR>T
 
Back
Top