I have a .net panel, and I want to send this panel via outlook to other recipients. For this I think I have to find the html code of this element. How to do that ?

Thanks.

link|improve this question

66% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use the RenderControl method to output the contents to an HtmlTextWriter.

Example, which outputs the content to a StringBuilder.

StringBuilder content = new StringBuilder();
StringWriter sWriter = new StringWriter(content);
HtmlTextWriter htmlWriter = new HtmlTextWriter(sWriter);
pnlMyPanel.RenderControl( htmlWriter );
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.