Running a Blazor Server app is showing a partially rendered page with a browser console error of: aspnetcore-browser-refresh.js:234 WebSocket connection to 'wss
I have the following working code that fetches a JSON data from Azure API: @code { string responseBody; protected override async Task OnInitializedAsync() {
My users can't copy the phone number from their phone book(mobile phone/clipboard) straight into the html textbox. They usually fix this issue by copying the nu
I have a Blazor page that can receive form-data from a POST request. After this data is received, it will be set to two properties and also rendered onto the pa
I'm working on a Blazor app that's similar to Facebook groups, I have to make a notification function where users can receive a notification message when someon
I have a simple component like this: @foreach(book in store) { <li @click="@SelectBook(@book.id)"> @book.title <li> <!-- book.id throws error
look at this blazor server page: @page "/" <div>@Field1</div> <div>@Field2</div> <button @onclick="OnBtnClick">Btn</button>
When I create a new, clean Blazor .NET 6.0 app and start it (using Visual Studio 2022), I see the following error in the browser console: WebSocket connection t
I have a Blazor server app (.net 6) page that has a select drop down list, which is set to allow multiple selected items. I need to set default values, when th
I was just wondering why the recommended solution for a Blazor-Server-Chat by Microsoft is initializing a Signal R Hub. Technically, all the C# Code is executed
I have Blazor Server Side app, where I have added JavaScript and CSS Libraries for Metronic Bootstrap Template. The template is fully loaded when I run the app,
We are using Blazor Server for our application. Some of our users have intranet rest web api's in their local environment that is not accesible from outside wor
We are looking for a way to get Blazor Server loading other Blazor Server projects. Our goal is to have a micro-frontend approach, where each micro-app is also
I'm deploying my .Net 6, Blazor Server site for the first time on shared hosting. It's all seems to work so far bar two things. In the browser console (Chrome)
I have a question for Blazor Server Side. I want to @page route url define with variable or property. I can use now with below default method @page "/route-url"
I'm learning Blazor Server and have an app with an existing DbContext (EF/MSSQL) for CRUD operations. Now I'd like to implement Identity and for that I'm follow
Background: As described in bullet #4 of my other post I'm trying to follow CDennig's example bicep script to grant my blazor (server) application access to bot
I have a problem with the return event of a child component on Blazor. I am currently using MudBlazor, I have created a component called BrandSelect which loads
When using Blazor Server and the MSAL library you must provide either a client secret or a client certificate. Here is what a Blazor Server project uses to setu
I want to Convert Tiff file/filestream into Jpeg file/filestream. I am curretly developing a Blazor Server app with .NET 5 in Windows. But my Server is in Ubunt