ASP.NET Core 5.0 Partial View Edit
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.