我知道如何使用带有 saveas 方法的 fileupload 控件将图像保存到文件夹中。但是我从图像控件中获取图像并将其保存到文件中而不使用文件上传控件 n 将其保存在文件夹中。
问问题
11271 次
3 回答
2
string filepath = img1.ImageUrl;
using (WebClient client = new WebClient())
{
client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg"));
}
于 2012-08-12T12:43:49.070 回答
1
你知道图片路径吗?您可以从图像控件中获取图像路径,然后在代码中下载图像:
using(WebClient client = new WebClient())
{
client.DownloadFile("http://www.example.com/image.jpg", localFilename);
}
于 2012-05-22T05:38:27.643 回答
1
首先获取图像的 URL,然后使用 webclient 可以将文件保存在文件夹中
string filepath = img1.ImageUrl;
using (WebClient client = new WebClient())
{
client.DownloadFile(filepath,Server.MapPath("~/Image/apple.jpg"));
}
这将使用 ImageName 苹果将图像保存在图像文件夹中...
于 2012-05-22T05:50:37.653 回答