我想要这个输出:
<a href="\Catalog\Flooring">
<img src="http://site.com/dot.jpg" width="100px" height="100px" alt="" />
<span>Some text here</span>
</a>
使用类似于以下的 RouteLink:
<%= Html.RouteLink(myFPV.ProductTypeName, "CatalogType", new { controller = "Catalog", action = "Types", group = myFPV.ProductGroupName, type = myFPV.ProductTypeName })%>
我无法弄清楚如何在我的标签中添加一个<img>
和<span>
(带有文本)标签<a>
。
有道理?