s

ASP.NET Core 5.0 Partial View edit button Edit

author
Murugan Andezuthu Dharmaratnam | calendar 18 January 2021 | 2500

Introduction

A partial view is a Razor markup file (.cshtml) without an @page directive that renders HTML output within another markup file's rendered output.

When to use partial views

1.Break up large markup files into smaller components.
2.Reduce the duplication of common markup content across markup files.

Steps to add a partial view