vote up 5 vote down star
3

In the latest (RC1) release of ASP.NET MVC, how do I get Html.ActionLink to render as a button or an image instead of a link?

flag

44% accept rate

4 Answers

vote up 4 vote down

You can't use Html.ActionLink directly. You should use Url.RouteUrl and use the URL to construct the element you want.

link|flag
vote up 4 vote down

Late response but you could just keep it simple and apply a CSS class to the htmlAttributes object.

<%= Html.ActionLink("Button Name", "Index", null, new { @class="classname" }) %>

and then create a class in your stylesheet

a.classname
{
    background: url(../Images/image.gif) no-repeat top left;
}

Works for me

link|flag
This works perfectly for me, though you may need to replace null with a routeValues object depending on where you are linking to. – David Conlisk Oct 13 at 9:51
vote up 3 vote down

Even later response, but I just ran into a similar issue and ended up writing my own Image link HtmlHelper extension.

You can find an implementation of it on my blog in the link above.

Just added in case someone is hunting down an implementation.

link|flag
Awesome stuff :) – Kenny Eliasson Jul 15 at 15:48
vote up 0 vote down

Do what Mehrdad says - or use the url helper from an HtmlHelper extension method like Stephen Walther describes here and make your own extension method which can be used to render all of your links.

Then it will be easy to render all links as buttons/anchors or whichever you prefer - and, most importantly, you can change your mind later when you find out that you actually prefer some other way of making your links.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.