How to convert InnerText to InnerHtml in Webbrowser Control in C#?
Posted
by Alexander
on Stack Overflow
See other posts from Stack Overflow
or by Alexander
Published on 2010-03-13T22:36:10Z
Indexed on
2010/03/13
22:45 UTC
Read the original article
Hit count: 1053
I'm working on a WYSIWYG editor with builtin spell checker Hunspell and online highlighting of misspelled words. I'm using Webbrowser control as a html handler. It's a way easy to spell check text than html in webbrowser control, but following this way I'm losing all html formatting. So the question is: is there any way to spell check body innertext and then convert it to body innerhtml with previous formatting? (with no use of HtmlAgilityPack or Majestic12 or SgmlReader or ZetaHtmlTidy).
Thanks in advance.
© Stack Overflow or respective owner