0

Windows phone Webbrowser 未正确呈现内容。例如,欧元符号显示为特殊字符“ (欧元 (€) ”。有什么方法可以在 WebBrowser 中显示这样的实际内容吗?

4

1 回答 1

0

试试这个,它对我有用:

StringHtmlContent = StringHtmlContent.Replace("€", "&euro ;"); //between &euro and ; no whitespace

或者,在您的情况下:

using WebBrowser.NavigateToString("<html><Body><table><tr><td>(euro (&euro ;)</td></td></table></body><html>")
于 2012-07-30T10:05:45.773 回答