Uri uri = new Uri("" + metric.Image, UriKind.Absolute);
ImageSource imgSource = new BitmapImage(uri);
ImageMetric.Source = imgSource;
我有这个代码
在数据库中我将图像保存在路径/UploadedImages/greenarrow.png
下UploadedImages和我的解决方案文件夹放在E盘中。
但不同的文件夹。
如何访问它?
请帮帮我
答案 0 :(得分:0)
我终于找到了答案
当您在iis中托管网站时,您可以在其中创建图像文件夹并从数据库中保存图像
这样您就可以浏览链接并找到图像。
Uri uri = new Uri(“http://www.abc.com”+ fieldname.Image,UriKind.RelativeOrAbsolute); ImageSource imgSource = new BitmapImage(uri); ImageMetric.Source = imgSource;