Como cargar código html en un WebBrowser
1 2 3 4 5 |
webBHtml.Navigate("about:blank"); if (webBHtml.Document != null) webBHtml.Document.Write(string.Empty); webBHtml.DocumentText = " lo que sea"; |
Como cargar código html en un WebBrowser
1 2 3 4 5 |
webBHtml.Navigate("about:blank"); if (webBHtml.Document != null) webBHtml.Document.Write(string.Empty); webBHtml.DocumentText = " lo que sea"; |