How can I open a new window without using JS
As of 1 of June 2022 there is no way of currently doing it directly with pure Blazor, you’ll need to use JSInterop. Luckily this is easy enough to do. At the top of your .razor file add @inject IJSRuntime JSRuntime; And then use it like so await JSRuntime.InvokeAsync<object>(“open”, url, “_blank”); Note that the IJSRuntime … Read more