I have two @Html.ActionLink\'s that I want to make look like buttons. I\'m able to make this happen with CSS but only if I use the #ID of the actio
@Html.ActionLink\'s
CSS
You have to indicate the action name, controller and url parameters (null in this example)
@Html.ActionLink("Link Name", "ActionName", "ControllerName", null, new { @class = "your css class" } )