this is weird. I see references out there for @Html.Button() but when I type that Intellisense doesn\'t find such a helper... there\'s dropdownlist, hidden, editors, et cet
MVC5 , Bootstrap ver 3.2.0
@Html.ActionLink
(
linkText: " Remove",
actionName: "Index",
routeValues: null, // or to pass some value -> routeValues: new { id = 1 },
htmlAttributes: new { @class = "btn btn-success btn-sm glyphicon glyphicon-remove" }
)
This will generate a link that looks like a button.