asp.net mvc从数据库动态获取img src

时间:2017-05-24 19:14:04

标签: asp.net asp.net-mvc image

我试图从数据库中显示模型的图标/图像。在我的数据库中,我将图像位置保存为filename.png。我在应用程序的内容文件夹中有什么图像。但是没有看到图像。

<tr>
                <td>Icon Location: </td>
                <td>ahmeteasi.png</td>
                <td> <img src="/Contents/ahmeteasi.png" />  </td>
            </tr>

在我看来,我有点像这样。

        <td> <img src="@Url.Content(String.Format("~/Contents/{0}", Model.appIconLocation))" />  </td>

即使页面来源显示正确。我看不到。问题出在哪里。谢谢 This is the error. when I click it from page source

0 个答案:

没有答案