string imageUrl = "http://www.google.com/intl/en/images/logo.gif";
byte[] imageData;
WebClient wc = new WebClient();
try
{
imageData = wc.DownloadData(imageUrl);
MemoryStream ms = new MemoryStream(imageData);
Bitmap b = new Bitmap(ms);
b.Save(@"c:\google.tiff", ImageFormat.Tiff);
}
catch(WebException)
{
//something went wrong during the download
}
---------------------------------------- Knowledge is P...O...w...E...R!My site