For Programmers: Free Programming Magazines  


Home > Archive > ASP .NET Building Controls > January 2005 > Dynamically Adding User Control with Child User Control









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Dynamically Adding User Control with Child User Control
Travis Pruitt

2005-01-16, 8:59 pm

I have a user control that has a child user control. If I drag this
onto the page, it appears and functions normally.

If I attempt to add the user control to a page dynamically, I get the
static content, but the child user control does not appear to render.

Any ideas on how I can fix this?

I'm dynamically creating the control using:

ReportControl_ascx rc =
(ReportControl_ascx)Page.LoadControl("UserControls/ReportControl.ascx");
rc.ReportInfo = e.SelectedReport;

Control contentCtrl =
this.Master.FindControl("ContentPlaceHolderMain");
contentCtrl.Controls.Add(rc);

Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com