ASP.NET: How to save a remote image
From Wiki
Summary: How to save an image from a remote location to your web server.
- Dim r As New System.Net.WebClient
- r.DownloadFile("http://http://aspnetlibrary.com/images/logo.png", "c:\aspnetlibrary.png")
This Hack is part of the ASP.NET Hacks collection


