When the editor control contains the following html:
<p>[&]</p>\r\n<p><strong>paragraph
2</strong></p>\r\n
after calling the CleanUpMicrosoftWordHTML() methods, the Text property correctly returns the following:
"<p>[&]</p>\r\n<p><strong>paragraph 2</strong></p>\r\n"
However, when I enter the following HTML into the Editor control:
<p>[&]</p>\r\n
the Text property now returns after calling the CleanUpMicrosoftWordHTML()method:
"<p>[&amp;]</p>\\r\\n"
Note the extra escaping of the & entity.
Surely a bug?
Wayne.