0
Okay, come on. First on Image 1, you created a PartialView
, and what is a PartialView
?
A Partial View or Partial View translated into poor English, is a View where your code is reusable in several other places.
How to use a Partial View?
@Html.Partial("NomeDaSuaView", model)
Being the model in the above example an additional parameter.
More information: https://docs.microsoft.com/pt-br/aspnet/core/mvc/views/partial?view=aspnetcore-2.2
Just what I was looking for, thank you!
– mateus