[ASP.NET] Controls do not appear on dynamically created user control - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:20:53Z http://stackoverflow.com/feeds/question/127413 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/127413/asp-net-controls-do-not-appear-on-dynamically-created-user-control 3 [ASP.NET] Controls do not appear on dynamically created user control Serhat Özgel 2008-09-24T14:15:36Z 2009-07-18T03:22:08Z <p>I have user control named DateTimeUC which has two textboxes on its markup:</p> <pre><code>&lt;asp:TextBox ID="dateTextBox" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;asp:TextBox ID="timeTextBox" runat="server"&gt;&lt;/asp:TextBox&gt; </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#127438 4 Answer by TcKs for [ASP.NET] Controls do not appear on dynamically created user control TcKs 2008-09-24T14:17:27Z 2008-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#127479 0 Answer by ajh1138 for [ASP.NET] Controls do not appear on dynamically created user control ajh1138 2008-09-24T14:22:26Z 2008-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#127499 0 Answer by Briggie Smalls for [ASP.NET] Controls do not appear on dynamically created user control Briggie Smalls 2008-09-24T14:24:39Z 2008-09-24T14:24:39Z <p>I think you want to add your control to the page's form &amp; 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>