我正在处理我的高级项目,我需要从幻灯片中检索一个URL图像,其中包含来自新闻幻灯片网站的大量照片。 你可以帮帮我吗?
答案 0 :(得分:1)
如果您知道要撤消的文件的地址,可以使用WebClient
类进行类似的操作:
string imagePath = "img\\cat.png";
using(WebClient webClient = new WebClient())
{
webClient.DownloadFile("http://www.example.com/img/cat.png", imagePath);
}
以上示例将从http://www.example.com/img/cat.png
下载并将内容保存到第二个参数中指定的文件路径,在本例中为img\cat.png
。
加载后,在ASP.NET代码中,您可以将路径设为src
,例如:
<img src="img/cat.png" alt="Cat" />