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
It worked when i use null
@Html.ActionLink("Add User", "Create",null, new { @class = "btn btn-primary" })
"Add User" is Button Text "Create" is actionName null new { @class = "btn btn-primary" } CSS used bootstrap class
"Add User" is Button Text
"Create" is actionName
null
new { @class = "btn btn-primary" } CSS used bootstrap class