how to display html content in a textbox?
What I want to do is to create a reply page in my email application, which the original email content shows in bottom, user could enter their reply message on top.I know I can display html content in a DIV by u开发者_JS百科sing div.InnerHtml property. But in a div user cannot input new content. Is that possible that HTML content could be displayed in a textbox? If not, any other option? My development environment is Asp.net C#, I use EWS to communicate with exchange server. Thank you.
You can use the HTMLEditor control.
You could encode the content... e.g. <html>
to <html>
精彩评论