views:

103

answers:

1

I'm using WebBrowser control in .NET app. I construct a html text, then set the controls property DocumentText to this html. It works fine on my computer. On some other computers it simply displays the source as a text. I think that it may be connected with some explorer properties but I don't really know why it is behaving like this. How can I handle it to always display proper view? Or at least what can I fix on a specific computer so that the application works fine/

A: 

There is allways the sucky way of dumping the HTML to disk and set the URL to the file. But that is not a good solution.

Wolf5