链接db asp.net mvc 4中的图像

时间:2013-05-01 21:46:50

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

我正在尝试将图像链接到来自db的页面。

    @foreach (var item in model)
   <tr>
   <td>
   <img width="50" height="50" src="@Url.Action("GetImage", "Product", new { item.ProductId})"/>
   </td>
   ...

我现在如何拥有此图片,点击后,转到某个动作

1 个答案:

答案 0 :(得分:0)

将图片包裹在a标记中。

<a href="SOME_URL_HERE">
    <img width="50" height="50" src="@Url.Action("GetImage", "Product", new { item.ProductId})"/>
</a>