is there a way to put a string variable into a new declared htmldocument variable without going through a webbrowser ? i tried this
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim v As New WebClient
Dim page As String = ""
Dim ahtm As HtmlDocument = Nothing
page = v.DownloadString("http://www.google.com")
ahtm.Body.InnerText = page 'not working
ahtm.Write(page) 'not working neither
End Sub