If I create a UserControl and add some objects to it, how can I grab the HTML it would render?

ex.

UserControl myControl = new UserControl();
myControl.Controls.Add(new TextBox());

// ...something happens

return strHTMLofControl;

I'd like to just convert a newly built UserControl to a string of HTML.

Answered (below):

Using azamsharp's method worked - here's the code example:

TextWriter myTextWriter = new StringWriter();
HtmlTextWriter myWriter = new HtmlTextWriter(myTextWriter);

myControl.RenderControl(myWriter);

return myTextWriter.ToString();

You'll need to be using System.IO (to get the StringWriter class).

link|improve this question

1  
Please, make azamsharp's answer "accepted", if his solution works for you. Be a good SO member :) – Sunny Nov 13 '08 at 22:07
feedback

5 Answers

up vote 20 down vote accepted

You can render the control using Control.RenderControl(HtmlTextWriter).

Feed StringWriter to the HtmlTextWriter.

Feed StringBuilder to the StringWriter.

Your generated string will be inside the StringBuilder object.

link|improve this answer
1  
you could also add the control in a "live" controls collection to avoid random exceptions. – Atanas Korchev Nov 13 '08 at 22:34
feedback
//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();
link|improve this answer
feedback

override the REnderControl method

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);
}

This will give you access to the writer which the HTML will be written to.

You may also want to look into the adaptive control architecture of asp.net adaptive control architecture of asp.net where you can 'shape' the default html output from controls.

link|improve this answer
feedback
UserControl uc = new UserControl();
MyCustomUserControl mu = (MyCustomUserControl)uc.LoadControl("~/Controls/MyCustomUserControl.ascx");

TextWriter tw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(tw);

mu.RenderControl(hw);

return tw.ToString();
link|improve this answer
LoadControl solved my problem. (creating a new instance doesn't work) – BrunoLM Sep 28 '11 at 12:13
feedback

Call it's .RenderControl() method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.