I scaffolded a table in MVC, and created a view. This is the Edit button, I want change it, and make it blue bootstrap button How would I conduct this?
Original Code:
<td>
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
</td>
Incorporate this blue button:
<button type="button" class="btn btn-primary">Primary</button>
class="btn btn-primary"to the<a>