标签:
1 string s = "http://www.google.com/intl/zh-CN_ALL/images/logo.gif"; 2 System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(s); 3 System.Net.HttpWebResponse res = (System.Net.HttpWebResponse)req.GetResponse(); 4 this.pictureBox1.Image = Image.FromStream(res.GetResponseStream());
标签:
原文地址:http://www.cnblogs.com/shenbing/p/5963006.html