访问silverlight中根文件夹外的图像

时间:2013-02-19 09:24:24

标签: silverlight-4.0

        Uri uri = new Uri("" + metric.Image, UriKind.Absolute);

        ImageSource imgSource = new BitmapImage(uri);

        ImageMetric.Source = imgSource;

我有这个代码

在数据库中我将​​图像保存在路径/UploadedImages/greenarrow.png

UploadedImages和我的解决方案文件夹放在E盘中。

但不同的文件夹。

如何访问它?

请帮帮我

1 个答案:

答案 0 :(得分:0)

我终于找到了答案

当您在iis中托管网站时,您可以在其中创建图像文件夹并从数据库中保存图像

这样您就可以浏览链接并找到图像。

Uri uri = new Uri(“http://www.abc.com”+ fieldname.Image,UriKind.RelativeOrAbsolute);             ImageSource imgSource = new BitmapImage(uri);             ImageMetric.Source = imgSource;