I have some HTML which is encoded as XML, for example:
html = "this is a test </a> test <em>test2</em> ... "
So when I try to load this into a WebView control, it doesn’t correctly render the HTML:
myWebView.NavigateToString(html);
Just to be clear, I am not creating this HTML in this fashion, but am stuck with it. Is there a way to either render this to the control, or convert it to standard HTML first?
1 Answer