@page "/not-found"
@rendermode InteractiveServer
Die angeforderte Seite existiert nicht.
Zurück zur Startseite @code { [CascadingParameter] private HttpContext? HttpContext { get; set; } protected override void OnInitialized() { if (HttpContext is not null) { HttpContext.Response.StatusCode = StatusCodes.Status404NotFound; } } }