| Posted: 25 February 2007 at 3:19am | IP Logged
|
|
|
Here is the only two lines of code that you need to download a file from the internet using vb.net:
Dim wc As New System.Net.WebClient() wc.DownloadFile("http://testsite.com/images/Banners/absvb-88 x61-xp-02.gif", _ "c:\button.gif")
|