I am wanting to use dynamic includes by grabing the querystring value and inserting the page it specifies<BR><BR>ie. default.aspx?p=home.ascx<BR><BR>I need to user the user controls but not sure how to.<BR>Could you please help!<BR><BR>DizzyFirst you need to create a container for your dynamic controls.<BR>Place this text in the body of the page:<BR><!--- BODY ---><BR><aspanel id="body" runat=server/><BR><BR><!--- BODY ---><BR><BR>Then you need to access the control and bring it to life:<BR> Dim strPage As String = request.querystring("p")<BR> body.Controls.Add( Page.LoadControl(strPage & ".ascx") )<BR><BR><BR>Tommy McConnell<BR>