It depends on how you want to connect, you have various options like WCF, Web Service, Or Even extract a web page as a string with some query string parameters:
Private Sub Btn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
rtbResults.Text = GetPageAsString(New Uri("http://weather.yahooapis.com/forecastrss?w=26390108&u=c"))
End Sub
Public Shared Function GetPageAsString(ByVal address As Uri) As String
Dim request As HttpWebRequest
Dim response As HttpWebResponse = Nothing
Dim reader As StreamReader
Dim result As String
Try
' Create the web request
request = DirectCast(WebRequest.Create(address), HttpWebRequest)
' Get response
response = DirectCast(request.GetResponse(), HttpWebResponse)
' Get the response stream into a reader
reader = New StreamReader(response.GetResponseStream())
' Read the whole contents and return as a string
result = reader.ReadToEnd()
Finally
If Not response Is Nothing Then response.Close()
End Try
Return result
End Function