wp7 Display string in webbrowser or otherway?

2019-09-02 10:07发布

问题:

string a="hi <p> how </p> are <Br> you?</Br>";

How can avoid this tags <p> </p><Br> </Br>.

In output coming like that : Hi how are you?

If anyone know the answer help me.

回答1:

You can call NavigateToString to render custom HTML in a WebBrowser control:

string html = "<html><body>hi <p> how </p> are <br /> you?</body></html>";

webBrowser.NavigateToString(html);