User2110873642 posted
Hyperlinks in a Blazor component are intercepted automatically. When a user clicks a hyperlink the browser will not send a request to the server, instead Blazor will update the URL in the browser and render the page on the adress.
<a href="/Counter">This doesnt send a http request</a>
Is there a way to turn this off, and create a regular hyperlink? For SEO purposes, and for not needing the forcereload argument.