小编典典

如何将图像控制图像保存在Asp.net中的文件夹中

sql

我知道如何使用带有saveas方法的fileupload控件将图像保存到文件夹。但是我要从图像控件中获取图像并将其保存到文件中,而无需使用fileupload控件-
将其保存在文件夹中。


阅读 143

收藏
2021-04-22

共1个答案

小编典典

string filepath = img1.ImageUrl;           
using (WebClient client = new WebClient())
{
       client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg"));
}
2021-04-22