---
title: "Difference between view and partial view"  
description: "Difference between view and partial view"  
author: "Niraj Kumar Mishra"  
published: 2017-08-25  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/23292/difference-between-view-and-partial-view  
category: "asp.net mvc"  
tags: ["mvc"]  
reading_time: 1 minute  

---

# Difference between view and partial view

**View:** 1. It contains a layout page.2. Before rendered of any view, viewstart page is rendered.3. View might have use markup tags like body, html, head, title, etc.4. View is high weight as compare to Partial View.**Partial View:**1. Partial View does not contain a layout page.2. We cannot use any common code for a partial view within the viewStart page. 3. Partial view is designed originally to render within the view and that reason it does not contain any mark up.

## Answers

### Answer by Niraj Kumar Mishra

**View:** 1. It contains a layout page.2. Before rendered of any view, viewstart page is rendered.3. View might have use markup tags like body, html, head, title, etc.4. View is high weight as compare to Partial View.**Partial View:**1. Partial View does not contain a layout page.2. We cannot use any common code for a partial view within the viewStart page. 3. Partial view is designed originally to render within the view and that reason it does not contain any mark up.


---

Original Source: https://www.mindstick.com/interview/23292/difference-between-view-and-partial-view

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
