407
views
views
View Components are very much similar to the partial view but it is much powerful compared to the partial view. Like Partial View, View components does not depend on controllers. It has its own class to implement the logic to develop component’s model and razor markup view page.
Partial Views and View Components in ASP.NET Core
In partial view in mvc, In normal practice, view files are grouped in a folder name according to the controller’s name. These folders are normally stored within the views folder. Normally, views can be categorized into three different sections as follows: Layouts, Partial Views and View Components.