Multiple ways of doing it.
Get a page source:
[php]
Private Function GetSource(ByVal myURL as string) As String
Using wc As New Net.WebClient
return wc.DownloadString(myURL)
End Using
End Function
[/php]
Or create a webbrowser control to interact with the HTML document (so you can do things such as "GetElementsByTagName" etc etc)
OR httpwebreq
[php]
Private Function GetPageSource(ByVal URL As String) as string
Dim webReq As Net.HttpWebRequest = DirectCast(Net.Webrequest.Create(URL), net.httpwebrequest)
Dim webResp As Net.HttpWebResponse = DirectCast(webReq.GetResponse, net.httpwebresponse)
Using sRead As New IO.StreamReader(webResp.GetResponseStream)
Return sRead.ReadToEnd
End Using
End Function
End Using
[/php]
Options are there.