我知道如何使用带有saveas方法的fileupload控件将图像保存到文件夹。但是我要从图像控件中获取图像并将其保存到文件中,而无需使用fileupload控件- 将其保存在文件夹中。
string filepath = img1.ImageUrl; using (WebClient client = new WebClient()) { client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg")); }