I need to pass two parameters to a page, when I'm trying to pass one, I do it this way:
<a asp-page="/ContaReceber/Edit" asp-route-id="@item.Id;" class="btn btn-sm btn-success">Editar</a>
I tried to pass something like:
<a asp-page="/ContaReceber/Edit" asp-route-id="@item.Id; @item.PessoaId" class="btn btn-sm btn-success">Editar</a>
I tried to put only comma, name the parameter, but it does not work, how can I pass more than one parameter to the page.