Problem

There is a URL on the internet pointing to a resource like an image or some other data (e.g. html webpage) that is needed.

Solution

Download it with System.Net.WebClient.

Sample Code

(:source lang=C#:)
WebClient client = new WebClient();
client.DownloadFile(@"http://slashdot.org", "slashdot-index.html");

Link