在图像ASP.Net MVC视图下面放一些行

时间:2012-11-23 09:55:34

标签: html asp.net-mvc image

我创建了一个填充图像的页面,并像这样编写了他们的名字(ASP.Net MVC):

enter image description here

这是我的代码:

<span style=" display : block">
  
   <a href="<%= Url.Action("EditProduct", new { id = item.Id }) %>">
   <img src='<%= Url.Action( "getImg", "Product", new  { ShopId = item.Id }) %>'   alt="" /></a>

    <%: Html.DisplayFor(modelItem => item.Name)%>
<% }%>
</span>

但我想把名字放在图片的下面。我试过像桌子这样的方法,但我没有成功。任何的想法?

2 个答案:

答案 0 :(得分:1)

试试这个:

<img src='<%= Url.Action( "getImg", "Product", new  { ShopId = item.Id }) %>' style="clear:both"  alt="" />

答案 1 :(得分:0)

<br />

之后添加</a>标记
<span style=" display : block">
    <a href="<%= Url.Action("EditProduct", new { id = item.Id }) %>">
    <img src='<%= Url.Action( "getImg", "Product", new  { ShopId = item.Id }) %>'   alt="" /></a><br />
    <%: Html.DisplayFor(modelItem => item.Name)%> <%}%>
        </span>