If instead of navigating to a webpage in a WebBrowser, you want to set the HTML property directly, what's the proper way to do it?
Is it like this?
myWebBrowser.Navigate("about:blank");
myWebBrowser.Document.Write("<html><body>Test</body></html>");