Is it possible to force a WebBrowser control to interpret some HTML without using the Navigate method to open a file on disk or a page on the web?
I have some HTML extracted from a database and I just want to display it, preferably without having to write it to a file first.
Could I manipulate the Document object somehow - e.g.
where I have invented the .HTML property!
I have some HTML extracted from a database and I just want to display it, preferably without having to write it to a file first.
Could I manipulate the Document object somehow - e.g.
Code:
WebBrowser1.Document.HTML = MyHTML