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?
|
3
|
|
|
|
|
|
You can't use |
||
|
|
|
|
Late response but you could just keep it simple and apply a CSS class to the htmlAttributes object.
and then create a class in your stylesheet
Works for me |
||
|
|
|
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. |
||
|
|
|
Do what Mehrdad says - or use the url helper from an 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. |
||
|
|
