标签: asp.net asp.net-mvc
我需要在ActionLink的<a>标记中包含图像。这样做的最佳方式是什么?
<a>
最终渲染的链接应该如下所示,
<a href="/Home/Test"><img src="test.jpg" />Test</a>
答案 0 :(得分:2)
像这样:
<a href="<%= Url.Action("...")"><img src="test.jpg" alt="test" />Test</a>