Skip to main content

Questions tagged [blazor]

Blazor is a free and open-source web framework being developed by Microsoft. It supports incremental updates to a virtual DOM, enables UI code to be written in C# with JS interoperability, can run from either server or client, and sends data over a constant SignalR connection instead of http request/response cycles.

2 votes
1 answer
160 views

I am developing a Blazor web app using C# .NET 9 in Visual Studio Code. I am using SQL Server 2017. This project is intended for internal company use. In the ...
DevQt's user avatar
  • 157
2 votes
0 answers
51 views

Here is the working fiddle: https://blazorfiddle.com/s/d04xl2zi I started a new project where they are using .net 8 blazor server interactivity. (I'm a bit new to blazor) they were interested in a ...
Bryan Dellinger's user avatar
2 votes
1 answer
115 views

I'm working on a side project. One of the design decisions is that components shouldn't do any database calling (if this is wrong or impractical then I'm open to disregarding this design policy). I'm ...
xtreampb's user avatar
  • 123
3 votes
1 answer
255 views

With the code I'll provide my objective is to build a map (table) based on the trips the truckers should do for each week with all of the charge/discharge operations. I do not need a deep analysis, ...
davidsi02's user avatar
  • 231
1 vote
1 answer
158 views

When creating a new Blazor project, there is a page called FetchData which gives an example of a razor page using a service to pull data to a page. I set myself a ...
AT123's user avatar
  • 13
0 votes
0 answers
1k views

I have created a helper service to send files from the client application to the API over HTTP using the POST method. Source project on Blazor Server Side, .NET 6, C # 10. Service features: Sending ...
abberdeen's user avatar
  • 109
1 vote
1 answer
133 views

I use this in my Blazor application, letting other services send errors or warnings to this AlertService. The service triggers an update of a component which simply displays the messages, errors in ...
Metallkiller's user avatar
2 votes
0 answers
1k views

This is an implementation of a Color class, primarily targetting the web to be used in a Blazor app. Color.cs ...
LeoVen's user avatar
  • 335