@page "/Contacts" @inject NavigationManager NavMan

Contacts

Current count: @currentCount


@code { private int currentCount = 0; private System.Reflection.AssemblyName? CurrAssembly { get; set; } = System.Reflection.Assembly.GetExecutingAssembly().GetName(); private void IncrementCount() { currentCount++; } private void GoTo01() { NavMan.NavigateTo("Nav01"); } private void GoTo02() { NavMan.NavigateTo("Nav02"); } private void GoTo03() { NavMan.NavigateTo("Nav03"); } }