❔ How to properly redirect in Razor Pages?
I'm redirecting w/ variables using:
<a asp-page="Stats" asp-route-qurl="@j">button</a>redirects to /Stats page, also sending a string to the page.- /Stats page calls a 3rd party API using the string
- /Stats renders itself using response from 3rd party API
downstreamWebApi. Do I have to add some attributes to get .AddDownstreamWebApi() to work with every page, or am I just redirecting wrong?