我想要这个输出:
<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>
(带有文本)标签。有道理?
最佳答案
RouteLink方法的第一个参数用于链接文本。但不幸的是,它会自动进行编码,因此您无法向其中发送字符。 (嗯,可以。但是它们会被编码。)
看一看this page。