Are there any differences when calling an API with Blazor in different render...
I'm having problems calling my API from a Blazor app with Fluent UI (if that matters). When I start the app, in the OnInitializedAsync() method, I'm calling the API that should return a list of ids,...
View ArticleIs SignalR event listener correctly disposed after reload of page?
I have a page component where i add a SignalR HubConnection:@page "/test"@using System.Diagnostics@using Microsoft.AspNetCore.SignalR.Client@rendermode InteractiveServer@implements...
View ArticleHow to Get the Base Url of a Server-Side Blazor App
I have a server-side blazor app and I need to know it's base url (e.g. https://localhost:1234 or https://my-host.com/appname).In a traditional ASP.NET web application, I could inspect the Request...
View ArticleMultiple components use the same tag in blazor
I'm currently playing around with blazor just to test what it is able to do.I have a main project which will act as the final website to be shown to the user. For the components I have created a...
View ArticleGetting stuck on apexcharts / Blazor-ApexCharts in .Net 8
I do have blank Blazor project in .Net 8 and i am trying to use ApexCharts via nuget apexcharts / Blazor-ApexCharts.I have used the demo code in a page. There are no errors but the charts just does not...
View ArticleHow to manage multiple uses of a model in an application?
I'm currently implementing an application and have for example a Customer model that's used in several different parts of the application. Each part only uses a subset of the properties from the...
View ArticleConvert iFile to FileStream to Upload to GoogleDrive appears to work but the...
I am able to 'create' a file on google-Drive using the below code however I have noticed the files have 0 bytes. I am using a Service Account which is Editor. I am using the Radzen Upload...
View ArticleEditForm.OnValidSubmit called 4 times in rapid succession
We have one user this is happening with. We cannot reproduce it and it is not happening to any others. And it has happened to them twice out of 8 uses of the relevant page. Needless to say, I can't...
View ArticleBlazor Web App .Net 8 Cookie Authentication without Identity...
I am still a junior working in .NET.This is my first time trying to implement authentication and authorization without identity in Blazor Web App. My current project is using...
View ArticleSide Bar loading failure in bootstrap blazor
I am trying to create an application using Blazor. In that application I am using sidebar component of Blazor. I have installed Blazor bootstrap and have given every reference of dependencies which are...
View ArticleBlazor : Optional parameters for the razor component
I am working on a blazor application which has a MainLayout where we are rendering DynamicComponent based on a list of types which are specified by the page.Also in the parameter for the second...
View ArticleYARP minimal API MapForwarder always returns 502
i have the following problem in my Blazor (.Net 8) App. I Try to use the YARP Map Forwarder (Microsoft.Extensions.ServiceDiscovery.Yarp 8.0.2) to forward requests, that reach Blazor Server from Blazor...
View Articlesyncfusion markers not showing up on demo code
I am currently testing the openstreetmap integration uing syncfusionLooking at their documentation => https://blazor.syncfusion.com/documentation/maps/providers/openstreetmapI tryed running this...
View ArticleMudBlazor OnInitializedAsync parrallel execution AspNetCore UserManager
I have an issue with MudBlazor and AspNetCore UserManager.In my Application I have a profile menu dropdown in the top right corner.When i click on "Edit Profile" I get routed to my edit profile page.So...
View ArticleUncaught (in promise) RuntimeError: memory access out of bounds in Blazor...
I'm developing a Blazor WebAssembly application that uses SQLite for local storage. I've encountered a RuntimeError: memory access out of bounds error in the browser console. This error seems to occur...
View ArticleHow to Prevent Values Changed Through Inspect Element From Setting a Bool
I am using EditContext.IsModified() to set a bool that tracks if there are any unsaved changes on the page. When altering values through Inspect Element, unsaved changes are detected and the bool is...
View ArticleUse Cookie Authentication for Microsoft Authentication in ASP.NET CORE Identity
I want to use Individual Logins and Microsoft Auth on my Blazor WebApp. Now, for debugging purposes, I don't want to sign in every time to the app. So I thought I can solve it with cookies. The cookie...
View ArticleMost simple and secure authentication method for blazor app and web service
I'm trying to create a blazor web app with an external dedicated API service that should also provide authentication for both app and service.Some specifications:none of the app pages will be available...
View ArticleMermaid.js in a script file for Blazor
I have a Markdown Editor component for Blazor. In this component, I use an old version of Mermaid to display graphs.I added the Mermaid library using this script<script...
View ArticlePassing value from one component to another using Blazor Sections
I am new to using Blazor UI and I am trying to pass a text input value from one component to another.I have a nested child layout component that contains an input component and other components....
View Article