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
- Blazor Server
- Server-side execution
- Real-time SignalR connection
- Minimal client-side requirements
- Blazor WebAssembly
- Client-side execution
- Runs entirely in the browser
- Offline support
Key Features
- Components
- Reusable UI pieces
- Full C# support
- JavaScript interop
- Routing
- Component-based routing
- Route parameters
- Navigation manager
- Forms and Validation
- Form components
- Data annotations
- Custom validation
- State Management
- Component state
- App state
- Browser storage
Getting Started
Choose a tutorial to begin:
- Introduction to Blazor
- Building Your First Blazor App