Umbraco没有使用媒体选择器在模板中显示图像

时间:2017-12-05 06:29:02

标签: asp.net-mvc umbraco7

我在模板中使用媒体选择器属性编辑器来显示图像。问题是,我无法在页面上看到图像,但我可以看到alt标记。另外,我可以在调试中看到值。

  @{
    var teamGroupPhoto = Model.Content.GetPropertyValue<IPublishedContent>("teamGroupPhoto");
    if (teamGroupPhoto != null)
     {
    <img class="img-responsive" src="@teamGroupPhoto.Url" alt="Groupphoto"/>
     }
   }

VS中代码的屏幕截图: enter image description here

当我浏览Umbraco后台的媒体文件夹中的图像链接时出现IIS错误: enter image description here

0 个答案:

没有答案