asp.net-mvc - page - html.actionlink image
ASP.NET MVC agrega la clase css a actionlink (1)
puedes probar
<%= Html.ActionLink("View Performances", "Details", "Productions",
new { name = item.show , year = item.year },
new {@class = "button"}) %>
Esta pregunta ya tiene una respuesta aquí:
- ¿Cómo agrego una clase a @ Html.ActionLink? 3 respuestas
¿Cómo agrego una clase css a este actionlink? Leí que lo haces como algo new { class = button }
pero no estoy seguro de dónde ponerlo en mi actionlink:
<%= Html.ActionLink("View Performances", "Details", "Productions",
new { name = item.show , year = item.year }, null) %>