I have any ASP.NET control. I want the HTML string how to do I get the HTML string of the control?
See Question&Answers more detail:osI have any ASP.NET control. I want the HTML string how to do I get the HTML string of the control?
See Question&Answers more detail:osThis appears to work.
public string RenderControlToHtml(Control ControlToRender)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
System.IO.StringWriter stWriter = new System.IO.StringWriter(sb);
System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(stWriter);
ControlToRender.RenderControl(htmlWriter);
return sb.ToString();
}