从URL加载图像并绑定到ASP.NET中的图像控件

时间:2015-02-06 07:13:18

标签: c# asp.net image

我有http网址,必须显示该网址的图片。

如何加载它并绑定到ImageControl?

这是我的网址:

string url = www.abc.com/abc/getDigitalDocument.htm?name=" + name + "&password=" + passwrod + "&flag=Photo";

非常感谢任何帮助。

谢谢!

1 个答案:

答案 0 :(得分:0)

好的,它直接使用" Image.ImaegUrl" :

Image1.ImageUrl = "www.abc.com/abc/getDigitalDocument.htm?name=" + name + "&password=" + passwrod + "&flag=Photo";