Relative Content

Tag Archive for blazor

Blazor project template best practicies

What’s the best practicies to organize a WebAssembly (Client) project on Blazor?
Where to put the components that’s not a page componet but is part of a specific page?
Where to put the DTOs shared with the serve api?

Authentication in Blazor Server Interactive

I am not able to implement a working authentication system in my Blazor .NET8 ServerInteractive application. I am quite new at web dev (I am more of a WinForm/WPF programmer)

inputselect in Blazor 8

I’m learning Blazor 8 and facing an issue:
I have a list of persons. the Person object has an id, a name and an age. I would like to use two dropdown buttons to display or control each other. After selected a name, the age dropdown should display the age of the selected person’s name and vise versa.
I don’t want to use JSRuntime.

Why input do not bind value to variable in this code

I started learning inputs in blazor and when I tried to run some code with it wont work… when I try run this code, it wont write down any errors but when I write down some text in input collum than it wont show up in the …
enter image description here

Generics in Blazor component

I am writing a component that requries a generic parameter to be declared. I do not have my code in the page within a code block, but instead use a partial class.