我有这个 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>
有任何想法吗?