Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
27 views

I am fairly new to blazor and have a RCL which uses .razor.css files. The bundle for these files gets created but when I try to access them in my actual project they don't get loaded. I call the file ...
Daniel's user avatar
  • 1
Advice
0 votes
7 replies
118 views

I have a list that is the result of a db query. I need to be able to query another table but filter that query based on the first list. In a perfect world I would join these two tables but they are ...
Wilock's user avatar
  • 51
0 votes
0 answers
72 views

I am using Blazor server with .NET 10. Sometimes, one of my Razor components triggers a NullReferenceException in the render tree and I fail to understand how this can be: Unhandled exception ...
pschill's user avatar
  • 5,677
Advice
2 votes
0 replies
63 views

I'm developing Blazor Web UI for an embedded application on Linux/ARM. Normally it will be one client per server connection but since the backend HW is quite limited I want to ensure the frontend does ...
jackhab's user avatar
  • 18k
0 votes
0 answers
97 views

I am developing an Employee Management System in Blazor Server using PostgreSQL for the database and JWT for authentication. I am using Microsoft Identity tables for user data. I have created a login ...
Prashil Shah's user avatar
2 votes
0 answers
67 views

I have a Blazor server app that calls a separate ASP.NET Core Web API via HttpClient. When the user logs in, the API sets an HttpOnly cookie in the response. However, the cookie never appears in the ...
Prashil Shah's user avatar
0 votes
1 answer
66 views

I'm building a Blazor Server (.NET 10.0) app with JWT authentication. I'm using ProtectedLocalStorage to persist the JWT token on the client, and a custom AuthenticationStateProvider to decode and ...
Prashil Shah's user avatar
0 votes
0 answers
58 views

We are building an application where there are several components that must all work together that are not all entirely in my control. First, a frontend written in Blazor Server that does some ...
Kayden Miller's user avatar
0 votes
0 answers
99 views

I am a student who has just started learning Blazor (.NET 8/10), and I am completely confused about how to correctly transfer session data from SSR (server-side rendering) to Interactive Server mode. ...
Evgeniy's user avatar
1 vote
1 answer
83 views

Repro: Create one of the default/sample ASP.NET Core 10 Blazor Server apps in VS 2022. Install it in the root directory of an IIS site (http://mysite.example/). Note that everything works as ...
Heinzi's user avatar
  • 174k
1 vote
0 answers
98 views

I've been trying to upgrade my Orchard Core modules to .NET 10 and have been having an issue with my Blazor module. I'm getting an error 405 - Method Not Allowed on a request to /_blazor/negotiate?...
Drew Brasher's user avatar
0 votes
0 answers
72 views

I'm working on a server-side Blazor app which supports multiple languages. The web page is shown in the language according to the browser settings. Within the app I want to show the count of connected ...
Belenos's user avatar
  • 47
1 vote
1 answer
207 views

I have an issue with Blazor not firing or completing the call when I inject a service interface to make some backend/database calls and use that in my page. I have a service layer with an interface ...
Ak777's user avatar
  • 448
0 votes
1 answer
168 views

I have a problem with the sidebar not loading. It is placed as on demo, with everything else. I am using Visual Studio 2026 and .NET 10. Here is my public repo: https://github.com/vjerani/...
Vjeran IVICIC's user avatar
0 votes
1 answer
193 views

I created a .NET 10 Blazor Server application using Individual Accounts authentication in Visual Studio 2026. The application works correctly when hosted at the root of the domain. However, after ...
Smetronic's user avatar
0 votes
0 answers
51 views

I'm trying to get Authentication via AzureAD / Identity Platform to work in .NET 8 (or .NET 9 - it just can't be .NET 10). I've followed the wizard of the connected service for Identity Platform. It ...
Kempeth's user avatar
  • 1,956
0 votes
1 answer
67 views

I'm confused about the recommended architecture for Blazor Web App (Unified). Blazor is often introduced as a frontend framework, similar to Angular or React, which usually means the frontend talks to ...
Yoga Prasetiyo's user avatar
0 votes
1 answer
104 views

I am developing an intranet site for my organization that aggregates data from many sources, caches them in defined dynamic lists in a singleton class. The site has many razor pages that query/filter/...
Paul Young's user avatar
0 votes
0 answers
229 views

I'm working on implementing JWT authentication in a Blazor Server application with .NET 10. The issue I'm facing is that while I'm able to extract the JWT token, decode it, and see the claims (like ...
Maria's user avatar
  • 17
0 votes
0 answers
118 views

I have noticed in my server side .NET 10 web app that if I sit on a breakpoint for longer than 30 seconds, my web page in Chrome times out and loses its connection: content-script.js:196 Keep-Alive ...
HDhani's user avatar
  • 77
0 votes
1 answer
81 views

I created a serverside Blazor App and "electronized" it by following the instructions in the read me on the electronNET/electron.NET github page. One of the requirements for this app is to ...
user32002036's user avatar
0 votes
1 answer
75 views

I've built a Blazor application, but when we deployed it into a Testing environment, I received the following error: An exception occurred while iterating over the results of a query for context type ...
gbm0102's user avatar
  • 143
Best practices
0 votes
1 replies
50 views

In my server-side Blazor application I have this setup: Clicking a button will start some long running process. Upon clicking, the button will be disabled, the long running task will be started, and ...
StefanFFM's user avatar
  • 1,969
Advice
2 votes
3 replies
135 views

I have a question regarding the best method of bringing over a legacy WCF service written in vb.net into a new Blazor server-side application. When planning out how to do this, the obvious solution ...
gbm0102's user avatar
  • 143
4 votes
2 answers
871 views

Repro steps Create a new Blazor server app in VS 2026, targeting .NET 9 Edit the .csproj file and change the target framework to .NET 10: <TargetFramework>net10.0</TargetFramework> Start ...
Avrohom Yisroel's user avatar
Tooling
1 vote
1 replies
40 views

I would like to set the CSS breakpoints globally in Blazor. What are some approaches? I prefer something that keeps the code or additional libraries quite simple.
PizzaOverflow's user avatar
1 vote
0 answers
82 views

I'm using Blazor Server with Strawberry Shake 15.1.10.0 to consume a GraphQL API. Here's the flow: User logs in via a regular API call (SignInAsync(username, password)) The API returns a JWT token (...
javatunix's user avatar
Advice
0 votes
0 replies
258 views

I have the following code to start up a kestrel server on a random port. using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting.Server; using Microsoft.AspNetCore.Hosting.Server....
Peter Morris's user avatar
  • 23.6k
1 vote
1 answer
151 views

Does anyone know if there's an easy way in Blazor to have: A frontend/'user facing' site using Blazor Static SSR I don't want to include blazor.web.js, no enhanced navigation or streaming rendering ...
Zak123's user avatar
  • 455
Advice
1 vote
0 replies
83 views

Preamble In our current setup, I am developing a class library that acts as a plugin to our platform. This "works" because the executable scans its own directory and automatically loads ...
Noel Frostpaw's user avatar
Advice
0 votes
4 replies
71 views

Hopefully someone can advise me how to get out of this corner I've coded myself into! I'm pretty new to Blazor and have never created a dynamically generated form before. I THOUGHT I was on the right ...
Wilock's user avatar
  • 51
2 votes
1 answer
136 views

In my Blazor server-side application, I have a component with a button that, when clicked, displays a "Loading" bar while I check to make sure a all of my required text fields are not blank. ...
gbm0102's user avatar
  • 143
0 votes
2 answers
112 views

I'm using .NET 8 & Blazor, and ONLY css/html/C# - no JS. Goal: match all buttons to the largest button in any of the cells dynamically. As any button could change size (Usually becoming larger ...
DrakeWalker's user avatar
0 votes
1 answer
163 views

I’m implementing LDAP user authentication in a Blazor Server application using Novell.Directory.Ldap (LDAPS, port 636). The goal is to allow users to log in with their Active Directory credentials. ...
RoboDev's user avatar
0 votes
1 answer
74 views

I'm coding a Blazor Server Web Application, specifically a form. I'm struggling with an InputSelect field, and I couldn't find any solution to this specific problem. Here's a basic example I made ...
gallmonds's user avatar
0 votes
1 answer
60 views

I've built a Blazor application, and I wrote some logic in a for-each loop to display some data. The logic is meant to go something like this: for every job type, display the jobs for that particular ...
gbm0102's user avatar
  • 143
0 votes
0 answers
97 views

I am using .NET 9.0, my statically rendered login page results in an error when it's submitted: A valid antiforgery token was not provided with the request. Add an antiforgery token, or disable ...
Sunkist's user avatar
  • 21
1 vote
1 answer
96 views

Background I have a Blazor server-side app I'm building which will be a music sheets website. I'm having trouble running JavaScript code for a context menu. I've started adding a custom context menu, ...
SendETHToThisAddress's user avatar
0 votes
0 answers
94 views

I'm building a web application using a Blazor web app. The interactive render mode is set to server and interactivity location is set to "Per Page / Component". I've integrated a ready ...
Hosein Heidarzadeh's user avatar
1 vote
1 answer
88 views

I have a series of nested components. In an inner component, I'm using a 3rd party vendor component. I then also wrap that component in an outer component, then place the outer component on the page. ...
Jeremy's user avatar
  • 46.9k
1 vote
1 answer
104 views

I'm building a Blazor Server app with a Minimal API endpoint for login. Everything seems to work server-side: My CustomAuthenticationStateProvider correctly updates the AuthenticationState via ...
Yekopoie's user avatar
0 votes
0 answers
201 views

I am getting an intermittent exception in the console from the DOM: Uncaught (in promise) Error: System.InvalidOperationException: JavaScript interop calls cannot be issued at this time. This is ...
Ian Jowett's user avatar
1 vote
1 answer
73 views

I can't get the check-in and check-out dates I entered on the form. When I enter the values and submit, I see the default values I assigned at the beginning(Datetime.Now and the next day), and I don'...
Yekopoie's user avatar
0 votes
1 answer
62 views

I am attempting to implement a redirect to login on unauthorized pages. I think I have removed all hardcoded values that redirect to Account/Login?returnUrl=... but blazor insists on redirecting to ...
jdev9487's user avatar
  • 171
0 votes
1 answer
67 views

I have two ASP.NET Core applications: Blazor Server app with Identity authentication (working correctly) Web API that should share authentication cookies with the Blazor app The API is not ...
PeacefulWarrior22's user avatar
0 votes
2 answers
488 views

I'm trying out Microsoft's Semantic Kernel for chat completion in a Blazor app. I added a service that uses EF Core: public interface ISearchService { Task<string?> GetCustomerAsync(string ...
Ivan Debono's user avatar
  • 1,040
2 votes
1 answer
70 views

I'm creating a MudTable with some data, and I want to open a MudDialog to edit the row data and then save it. <MudTable T="Company" items="@_Companies" Dense=true Hover=true ...
Ferran Muñoz's user avatar
0 votes
0 answers
135 views

I’m working on a .NET MAUI Blazor Hybrid app and trying to generate an APK using the following command: dotnet publish -f net9.0-android -c Release -p:AndroidPackageFormat=apk My solution contains ...
amanpreet's user avatar
0 votes
0 answers
153 views

I created a new Blazor Web App (very important as WASM does work). I have the "Hot Reload" checkbox checked: When I start it up, it starts up like this: info: Microsoft.Hosting.Lifetime[14] ...
Bluebaron's user avatar
  • 2,526
0 votes
0 answers
65 views

I'm currently building a Blazor Server application, and migrating code from an old AngularJs / ASP.NET MVC website. Part of that migration includes translating the html in the Angular pages into C# in ...
PKD's user avatar
  • 706

1
2 3 4 5
109