Most voted "blazor" questions
This tag should be used when the question refers to some resource, information or problem related to blazor. Blazor is a free and open source web framework that allows developers to create web applications using C# and HTML.
Learn more…11 questions
Sort by count of
-
8
votes2
answers695
viewsWhat is ASP.NET Core Blazor?
Looking at the list of novelties found in Visual Studio, I came across something talking about ASP.NET Core Blazor, and apparently there’s almost nothing talking about, I found very little material,…
-
2
votes1
answer149
viewsOnchange event in Input type="text" in a Blazor application
I am developing an application in Blazor and managed to do an inputtext along with a button perform a search in an api created by scafolding with Entity Frameworks. Follow simple form below.…
-
2
votes0
answers43
viewsC# Blazor Cascadingparameter - Component Update
Good afternoon, I’m starting in the blazor c# I’m trying to make a contextmenu component that should be instantiated in my Mainlayout, where every child that is rendered in Mainlayout @body has…
-
1
votes0
answers185
viewsHow to insert an input type file with validation in a Blazor form (Editform)
I’m following the official documentation ASP.NET Core Blazor Forms and Validation at this link Blazor form with validation and I realized that some inputs are missing, being these: input…
-
1
votes0
answers29
viewsIs there any way to make @bind-... a property readonly in blazor?
Is there any way to make @bind-... a property readonly in blazor? <MyComponent @bind-Property="@ReadOnlyProperty" /> @code{ public readonly bool ReadOnlyProperty= true; } Severity Code…
blazorasked 4 years, 9 months ago Amadeu Antunes 3,331 -
1
votes0
answers67
viewsBlazor | Service Registration Error - Microsoft.AspNetCore.Components.WebAssembly.Rendering.Webassemblyraddress[100]
Hello, I’m taking the first steps on Blazor and following an example I saw on the internet, which makes the Load Menu and Submenu straight from the data bank, I’m having problem at compilation time:…
-
0
votes0
answers44
viewsHow to create a group of routes in Blazor with parameters?
I’m trying to create a structure in my Blazor Client-Side like this: Pages Users Index.Razor Show. On my page Index is like this at the beginning: @page "/users/" And on my page Show is like this:…
-
0
votes0
answers76
viewsCreate a Crud with a table with relationship N to N C#
I have this structure and wanted to know how I do a CRUD with a relationship N-> N My doubts : 1 - How to list participants of a given event. 2 - How to include a participant in an event.…
-
0
votes0
answers95
viewsIs it possible to upload blazor webassembly applications with . net core hosted on Herokuapp via Docker?
When I go up a blazor server application, I use the following steps: I create a dockerfile file in the same folder where the project is so: FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim…
-
-1
votes1
answer169
views@bind and @onchange for a select on blazor c#
Hello, I’m new with blazor I wanted to do the following. I have 2 Lists, Category and another List2, in the form I have 1 select for the category and another select for List2, and I wanted to make…
-
-1
votes1
answer30
viewsDropdown Blazor
How do I dropdown Sub Categories to bring the data according to what I chose in the categories table ? I can only pull from the database but I don’t know how I do the sub-category pull from the…