ASP.NET Blazor

Blazor is a framework for building interactive web UIs using C#. Write client-side code in C# instead of JavaScript.

Hosting Models

  1. Blazor Server
    • Server-side execution
    • Real-time SignalR connection
    • Minimal client-side requirements
  2. Blazor WebAssembly
    • Client-side execution
    • Runs entirely in the browser
    • Offline support

Key Features

  1. Components
    • Reusable UI pieces
    • Full C# support
    • JavaScript interop
  2. Routing
    • Component-based routing
    • Route parameters
    • Navigation manager
  3. Forms and Validation
    • Form components
    • Data annotations
    • Custom validation
  4. State Management
    • Component state
    • App state
    • Browser storage

Getting Started

Choose a tutorial to begin:

  • Introduction to Blazor
  • Building Your First Blazor App