How do I get the HTML output of a UserControl in .NET (C#)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T09:31:57Zhttp://stackoverflow.com/feeds/question/288409http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288409/how-do-i-get-the-html-output-of-a-usercontrol-in-net-c3How do I get the HTML output of a UserControl in .NET (C#)?Jon Smock2008-11-13T21:31:30Z2009-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#2884141Answer by Joel Coehoorn for How do I get the HTML output of a UserControl in .NET (C#)?Joel Coehoorn2008-11-13T21:34:19Z2008-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#2884197Answer by azamsharp for How do I get the HTML output of a UserControl in .NET (C#)?azamsharp2008-11-13T21:35:53Z2008-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#2884272Answer by Xian for How do I get the HTML output of a UserControl in .NET (C#)?Xian2008-11-13T21:36:59Z2008-11-13T21:43:04Z<p>override the REnderControl method</p>
<pre><code>protected override void Render(HtmlTextWriter output)
{
output.Write("<br>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#8326962Answer by Ben Aston for How do I get the HTML output of a UserControl in .NET (C#)?Ben Aston2009-05-07T02:58:43Z2009-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>