MVC3 ActionLink with images (but without MvcFutures)?
I was wondering if anyone knows if it possible to use any of the "out of the box" ASP.NET MVC3 helpers to generate a "link button"...I currently use following: <a class="button" title="My Action" href="@Url.Action("MyAction", "MyController", new { id = item.Id })"> <img alt="My Action" src="@Url.Content("~/Content/Images/MyLinkImage.png")" /> </a> I am trying to avoid using MvcFutures, but even if I was able to use them, I don't think there is a extension method it there that will accomplish this either. (I believe solution in this case would be to roll custom helper as seen here ) Finally,