[ASP.NET] Controls do not appear on dynamically created user control - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T06:20:53Zhttp://stackoverflow.com/feeds/question/127413http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127413/asp-net-controls-do-not-appear-on-dynamically-created-user-control3[ASP.NET] Controls do not appear on dynamically created user controlSerhat Özgel2008-09-24T14:15:36Z2009-07-18T03:22:08Z
<p>I have user control named DateTimeUC which has two textboxes on its markup:</p>
<pre><code><asp:TextBox ID="dateTextBox" runat="server"></asp:TextBox>
<asp:TextBox ID="timeTextBox" runat="server"></asp:TextBox>
</code></pre>
<p>I am dynamically creating this control in another user control:</p>
<pre><code>Controls.Add(GenerateDateTime(parameter));
private DateTimeUC GenerateDateTime(SomeParameter parameter)
{
DateTimeUC uc = new DateTimeUC();
uc.ID = parameter.Name;
return uc;
}
</code></pre>
<p>But when I render the page, DateTimeUC renders nothing. I checked it like this:</p>
<pre><code>protected override void Render(HtmlTextWriter writer)
{
base.Render(writer);
StringBuilder builder = new StringBuilder();
StringWriter swriter = new StringWriter(builder);
HtmlTextWriter hwriter = new HtmlTextWriter(swriter);
base.Render(hwriter);
string s = builder.ToString();
}
</code></pre>
<p>s is empty and Controls.Count is 0. What am I doing wrong?</p>
http://stackoverflow.com/questions/127413/asp-net-controls-do-not-appear-on-dynamically-created-user-control/127438#1274384Answer by TcKs for [ASP.NET] Controls do not appear on dynamically created user controlTcKs2008-09-24T14:17:27Z2008-09-24T14:17:27Z<p>You must use a "LoadControl( "your_user_control_app_relative_path_.ascx" )" method instead of "DateTimeUC uc = new DateTimeUC();"</p>
http://stackoverflow.com/questions/127413/asp-net-controls-do-not-appear-on-dynamically-created-user-control/127479#1274790Answer by ajh1138 for [ASP.NET] Controls do not appear on dynamically created user controlajh11382008-09-24T14:22:26Z2008-09-24T14:22:26Z<p>I ran into this problem myself a while back. You need to use the LoadControl() method. Check out <a href="http://www.dotnetjunkies.com/WebLog/leon/archive/2004/08/28/23559.aspx" rel="nofollow">this page</a> on it.</p>
http://stackoverflow.com/questions/127413/asp-net-controls-do-not-appear-on-dynamically-created-user-control/127499#1274990Answer by Briggie Smalls for [ASP.NET] Controls do not appear on dynamically created user controlBriggie Smalls2008-09-24T14:24:39Z2008-09-24T14:24:39Z<p>I think you want to add your control to the page's form & not the form itself.</p>
<p>your code:</p>
<pre><code>Controls.Add( GenerateDateTime(parameter) );
</code></pre>
<p>try:</p>
<pre><code>Page.Form.Controls.Add( GenerateDateTime(parameter) );
</code></pre>