QQ: Is it possible to display an image via @Html.ActionLink helper instead of a link but be able to pass in object htmlattributes such as item id's?
@Html.ActionLink("Edit", "Edit", new { id=item.TheId })
QQ: Is it possible to display an image via @Html.ActionLink helper instead of a link but be able to pass in object htmlattributes such as item id's?
@Html.ActionLink("Edit", "Edit", new { id=item.TheId })
Short answer is NO, ActionLink HTML helper does not support this by default. You can implement your own HTML helper that would do this for you.