Topic: Adding an ImageButton to View
Description: (You can make an ActionLink an image in MVC but replacing the output text to the image you would like to view.
Notes: (Enter notes here)
Inside your View, all you have to do is replace the text with the path to your image.
Example:
<%= Html.ActionLink("Add Item", "Add", new {controller="MyController", parameter = Model.Id }).ToString().Replace("Add Item","<img src='/Content/images/add_to_cart_button.gif'>")%>