0

我有这个 foreach 循环从我的数据库中提取图像:

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

我试图将它包装在一个“a”标签中,但我得到的只是 404。

    <a href = "~/..."> <img width="".../></a>

有任何想法吗?

4

1 回答 1

1

带有超链接的图像是我想要实现的。单击图像,您将被带到编辑页面。

好的,假设您获得了问题中显示的图像Product.GetImage,然后由 调用编辑页面Product.Edit,您可以拥有以下内容:

<a href="@Url.Action("Edit")"><img src="@Url.Action("GetImage","Product")" /></a>
于 2013-05-06T06:16:36.630 回答