ASP.NET Razor Pages

Razor Pages is a simplified web application programming model that makes building web UI easier and more productive.

Key Features

  1. Page-Based Model
    • One file for markup (.cshtml)
    • One file for code (.cshtml.cs)
    • Automatic model binding
  2. Built for Productivity
    • Less complexity than MVC
    • CRUD operations made easy
    • Ideal for page-focused scenarios
  3. Full ASP.NET Core Features
    • Dependency injection
    • Configuration
    • Authentication
  4. 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