Yes, aspx web forms have a main page, and then you use custom .ascx controls.
With MVC, the "main page" is by default under the symbol
Views\Shared\_Layout.cshtml
Now you can also use Twitter’s wonderful bootloader and really start creating more user-friendly layouts with easy-to-use css, etc.
Your controller may return
PartialViewResult
as mentioned by other answers of others, these links should help you.
source
share