Server-side Blazor is a web framework from Microsoft to create single page apps running on the server.
In a server-side Blazor app I'd like to store some state that is retained between page navigation. How can I …
c# asp.net-core server-side blazor blazor-server-sideIn Blazor Client a redirection can be achieved using using Microsoft.AspNetCore.Blazor.Browser.Services; (...) BrowserUriHelper.Instance.NavigateTo("/route") This …
c# blazor-server-sideI created a "Razor Components" project. I am trying to execute an asynchronous method when pressing a button, but could …
c# razor blazor blazor-server-side razor-componentsI'm using Server-side Blazor components in ASP.NET Core 3 preview 4. I have a parent component, and child components, using the …
c# asp.net-core blazor blazor-server-sideI have just one, quick question. Is there way to hot reload a blazor app? At least, .razor files? Now …
c# cordova blazor blazor-server-side cordova9So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow …
c# charts blazor-server-sideI'm getting this message in the console when running a server-side Blazor app: Error: There was an unhandled exception on …
c# asp.net-core blazor blazor-server-sideI'm starting a new site with Blazor and Windows Authentication and need to identify the current user viewing the page/…
asp.net-core blazor .net-core-3.0 blazor-server-side ef-core-3.0In Blazor I have an <a> element that has both a href and an onclick method: <a …
c# blazor blazor-server-sideHow can I pass parameter into razor component? So far I tried @(await Html.RenderComponentAsync<Rateplan>(RenderMode.ServerPrerendered, …
c# asp.net-core blazor blazor-server-side razor-components