I want to use @Url.Action to pass multiple parameters through the URL in an ASP.NET Core 2.0 Razor Page. I don't know which tag helper I should use.
@model Memberships.Models.SmallButton
<a asp-page="@Url.Action(Model.Action)@Model.ActionParameters"
class="btn @Model.ButtonType btn-sm">
<span class="glyphicon [email protected]"></span>
<span class="sr-only">@Model.Text</span>
</a>