Loading, please wait...

How do you bind data in Blazor?

This code will help you to understand how to bind data in Blazor.

You can bind the data with DOM element using the “@” prefix with a C# parameter. Refer to the following example for one-way data binding.

@page "/"
  
 <h2>Hello, @Name!</h2>
  
 @code {
    
     private string Name { get; set; } = "Blazor";
 }