Top "Blazor" questions

Blazor lets you build interactive web UIs using C# instead of JavaScript.

How to fix "The CORS protocol does not allow specifying a wildcard (any) origin and credentials at the same time" error

I've already enabled CORS on the project in C# .net Core In startup.cs I've added lines ... services.AddCors(); ... app.…

c# .net-core blazor
Blazor onchange event with select dropdown

So I have been stuck trying to get a simple onchange to fire when a select dropdown value changes. Like …

c# asp.net-core blazor
HTTP Error 500.31 - ANCM Failed to Find Native Dependencies in IIS

I try to run a Blazor application. Web.Server runs .NET Core 3.0 Web.Client runs .NET Standard 2.0 Web.Shared runs .…

iis-10 blazor .net-core-3.0
Sending Push Notifications to iOS from PWA

I've got a Progressive Web App which made with Blazor WebAssembly and I was wondering if I can send push …

ios web-applications push-notification progressive-web-apps blazor
Blazor how to pass arguments to onclick function?

I'd want to make button onclick function that takes some input. <button onclick="@test(123, 456)">Check</button> @…

c# blazor
VS Code CSC : error CS1617: Invalid option '7.3' for /langversion

I downloaded VS 2017 15.7, .NET Core 2.1.2 and Blazor to try it out. It wasn't working in VS 2017 properly and thought I …

c# asp.net-core visual-studio-code blazor c#-7.3
Select box binding in blazor

I am trying to bind "CountryId" in the model to the value of a selected item of SelectList in blazor. …

c# asp.net asp.net-core blazor
.Net Blazor benefits over Angular , React or other javascript framework

What is the main feature of Microsoft's .Net Blazor? Can we use it in place of React or Angular? Will …

c# asp.net-core blazor
.NET Core Blazor: How to get the Checkbox value if it is checked?

I am trying to find to get the checkbox value if it is checked using Blazor framework, but I couldn't …

c# html .net-core blazor
Blazor vs Razor

With the invention of Blazor, I'm wondering if there are significant efficiencies (both in creation of code and in the …

c# razor asp.net-core blazor