ASP.NET Razor Pages
Razor Pages is a simplified web application programming model that makes building web UI easier and more productive.
Key Features
- Page-Based Model
- One file for markup (
.cshtml
) - One file for code (
.cshtml.cs
) - Automatic model binding
- One file for markup (
- Built for Productivity
- Less complexity than MVC
- CRUD operations made easy
- Ideal for page-focused scenarios
- Full ASP.NET Core Features
- Dependency injection
- Configuration
- Authentication
- Performance
- Lightweight
- Compiled views
- Efficient routing
When to Use Razor Pages
- Small to medium-sized web apps
- CRUD-based workflows
- New to web development
- Prefer page-focused approach
Getting Started
Choose a tutorial to begin:
- Introduction to Razor Pages
- Building Your First Razor Pages App