WebClient wc = new WebClient(); string url = "http://www.csdn.net/Images/logo_csdn.gif"; string newName = Server.MapPath("~/" + DateTime.Now.Ticks.ToString() + url.Substring(url.LastIndexOf('.'))); wc.DownloadFile(url, newName); wc.Dispose();
WebClient wc = new WebClient(); string url = "http://www.csdn.net/Images/logo_csdn.gif"; string newName = Server.MapPath("~/" + DateTime.Now.Ticks.ToString() + url.Substring(url.LastIndexOf('.'))); wc.DownloadFile(url, newName); wc.Dispose();