using the page source.
I am able to extract the data by the following code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate(TextBox2.Text)
End Sub
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
TextBox1.Text = WebBrowser1.document.Body.OuterText
End Sub
Anyhow it gives me plain text without any metadata(or HTML) but I am more or so interested in extracting the comments left by the user.
Please advice
This post has been edited by kevin_911: 07 July 2011 - 07:57 AM

New Topic/Question
Reply



MultiQuote





|