How do you login to a webpage and retrieve its content in C#?
Use the WebClient class.
Dim Html As String Using Client As New System.Net.WebClient() Html = Client.DownloadString("http://www.google.com") End Using