Blazor Navigation
The below shows ways to navigate other than using the menu.
Routing for Pages
The routing generally goes at the top of the razor file.
//In the razor page:
@page "/pagetonavigateto"
//With a parameter value
@page "/pagetonavigateto/{id:int}" //if t...
craigbrunton.social1 min read