|
Re: Getting an image from a website
The .NET Framework includes a class named WebRequest that will do what you're asking. You give it a URL and it returns the results as a stream. Then you just read the stream and write it to disk. Check MSDN, there is probably some sample code available.
|