从URL上载ASP.NET图像

时间:2008-11-02 04:50:08

标签: asp.net image file-upload

我有一个aspx页面,用户将在其中输入有效的图片网址(例如:https://stackoverflow.com/Content/Img/stackoverflow-logo-250.png)。 我需要程序将此图像上传到服务器。 我怎样才能做到这一点 ?

1 个答案:

答案 0 :(得分:5)

System.Net.WebClient webClient = new WebClient();

webClient.DownloadFile(@"http://stackoverflow.com/Content/Img/stackoverflow-logo-250.png",
@"c:\path\localfile.png");

您可以使用Server.MapPath获取服务器上与相对或虚拟路径对应的物理目录,例如Server.MapPath("~/Images")