What is the difference between view an partial view in mvc 4
Kowsalya devi
Select an image from your device to upload
View can basically contains a complete markup which may contain a master view(or master page) with all the design(s) etc. whereas Partial view is only a portion of page or a small markup which don’t have master page. It is basically used as user control in mvc and it can be used at more than one views Partial view() is reusable view i.e-Usercontrol but View() is a single page means which will render a normal .aspx page(.cshtml page).