Software Development Network>> .NET Development>> Download using StreamReader
Dim req As HttpWebRequest = WebRequest.Create("http://www.microsoft.com/")Dim response As WebResponse = req.GetResponse()Dim stream As StreamReader = new StreamReader(response.GetResponseStream())
Download using StreamReader
Jonas Beckeman
http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.aspx
You should be able to do: