Reputation: 17752
Does anyone know of a decent way to cleanly use Html.ActionLink helper with an image instead of text without going through a huge amount of replace scripts and the like?
Upvotes: 0
Views: 206
Reputation: 15511
<a href="<%= ${Url.Action("myaction") %>"><img src="img.gif"/></a>
Upvotes: 2