I am currently working on a school project with a classmate. We've decided on making the classic setup of an Administration-client (Blazor Server) and a Member-
I have a cookie consent banner in my blazor server app, everything works well when building in debug mode, but when I push it into production I get a "Object re
i have my blazor app hosted on azure with iis got some GLTF file i want to access with three.js but its like my app can't see any of my GLTF files. i have added
I'm developing a Blazor Server app using .NET 6.0. I would like for the index page to utilize a route parameter: @page "/{vendorId}" @functions { [Paramet
I am getting following exception when calling an Asp.NET Core 3.1 web api from a Blazor app. But same code works great from visual studio debugging Response sta
How to Embed a Leaflet map on a Blazor SPA, using JSInterop, what objects should be defined, and how to pass data that represents the location clicked on the ma
In my currently application I need to use two different authentications: Microsoft.AspNetCore.Identity - with internal Identity tables for Customer users Micros
I'm building a Blazor Server app using .NET 6. As an example I have a list of customers that I retrieve from a Sqlite db using Entityframework Core. I want to s
I am being plagued with the dreaded "Attempting to reconnect" message. The problem only occurs when the application is published on Azure, never when run locall
I have an editform using an editcontext: <EditForm OnValidSubmit="HandleValidSubmit" EditContext="_editContext" Context="auth"> <DataAnnotat
I am learning Blazor having come from a WinForm UWP background. I have a list of Game: public class Game { public string ID { get; set; } public string
I made a small sensor application in Blazor server. However, when I view the app on my phone, it shows these scrolling bars (I always need to pinch/zoom out my
In a Blazor app I have a file uploader that can take multiple files. When the user clicked 'upload' I used something like this: private async Task HandleFileUpl
I have a Blazor app with a MainLayout page, which has a @Body to load the actual page content. In my case Index.razor is loaded inside the MainLayout page. Is
I have tested a sample Blazor server application that uses standard ASP.NET Core Identity and I logged in successfully. But even after I tried to alter the cook
I'm trying to build custom cookie authentication in my Blazor Server app. It works as long as I use the DefaultAuthenticateScheme like this: builder.Services.Ad
I'm successfully signing in and out using Azure AD B2C in a Blazor Server app, but it's not clear to me the proper way to define the SignedOut page. This questi
I have this MudBlazor component: <MudTextField @bind-Value="@_presentationSettingsServiceRequest.PostCode" Class="my-2" Variant="Variant.Outlined" AutoFocus=
While using blazor, I want to be able to "go back" to a page I was before. I found this issue and looks like it's a dead end? This feature is something so basic
How do I set focus to a textbox in Blazor? So far the only way we have found is with JavaScript.