Search⌘ K
AI Features

Introduction to Blazor WebAssembly Application

Explore the fundamentals of Blazor WebAssembly by building your first app using Razor components. Understand how to create and use components, apply parameters, configure routing with the @page directive, and combine C# code with HTML markup using Razor syntax. Learn to create projects from templates and organize your app efficiently.

We'll cover the following...

Overview

Razor components are the building blocks of Blazor WebAssembly applications. A Razor component is a chunk of user interface that can be shared, nested, and reused. Razor components are ordinary C# classes and can be placed anywhere in a project. ...