How do I get the HTML output of a UserControl in .NET (C#)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:31:57Z http://stackoverflow.com/feeds/question/288409 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c 3 How do I get the HTML output of a UserControl in .NET (C#)? Jon Smock 2008-11-13T21:31:30Z 2009-05-07T02:58:43Z <p>If I create a UserControl and add some objects to it, how can I grab the HTML it would render?</p> <p>ex.</p> <pre><code>UserControl myControl = new UserControl(); myControl.Controls.Add(new TextBox()); // ...something happens return strHTMLofControl; </code></pre> <p>I'd like to just convert a newly built UserControl to a string of HTML.</p> <p>Answered (below):</p> <p>Using <a href="http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c#288419">azamsharp</a>'s method worked - here's the code example:</p> <pre><code>TextWriter myTextWriter = new StringWriter(); HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter); myControl.RenderControl(myWriter); return myTextWriter.ToString(); </code></pre> <p>You'll need to be using System.IO (to get the StringWriter class).</p> http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c/288414#288414 1 Answer by Joel Coehoorn for How do I get the HTML output of a UserControl in .NET (C#)? Joel Coehoorn 2008-11-13T21:34:19Z 2008-11-13T21:34:19Z <p>Call it's <code>.RenderControl()</code> method.</p> http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c/288419#288419 7 Answer by azamsharp for How do I get the HTML output of a UserControl in .NET (C#)? azamsharp 2008-11-13T21:35:53Z 2008-11-13T21:35:53Z <p>You can render the control using Control.RenderControl(HtmlTextWriter). </p> <p>Feed StringWriter to the HtmlTextWriter. </p> <p>Feed StringBuilder to the StringWriter. </p> <p>Your generated string will be inside the StringBuilder object.</p> http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c/288427#288427 2 Answer by Xian for How do I get the HTML output of a UserControl in .NET (C#)? Xian 2008-11-13T21:36:59Z 2008-11-13T21:43:04Z <p>override the REnderControl method</p> <pre><code>protected override void Render(HtmlTextWriter output) { output.Write("&lt;br&gt;Message from Control : " + Message); output.Write("Showing Custom controls created in reverse" + "order"); // Render Controls. RenderChildren(output); } </code></pre> <p>This will give you access to the writer which the HTML will be written to.</p> <p>You may also want to look into the adaptive control architecture of asp.net <a href="http://msdn.microsoft.com/en-us/library/67276kc5.aspx" rel="nofollow">adaptive control architecture of asp.net</a> where you can 'shape' the default html output from controls.</p> http://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c/832696#832696 2 Answer by Ben Aston for How do I get the HTML output of a UserControl in .NET (C#)? Ben Aston 2009-05-07T02:58:43Z 2009-05-07T02:58:43Z <pre><code>//render control to string StringBuilder b = new StringBuilder(); HtmlTextWriter h = new HtmlTextWriter(new StringWriter(b)); this.LoadControl("~/path_to_control.ascx").RenderControl(h); string controlAsString = b.ToString(); </code></pre>