As @Brandon points out, you are using PartialView for reuse and readability.
Take, for example, a script in which you have an IQueryable contact list.
You will have a partial view that looped around the list and a partial view that displayed items.
When you do this, you can write code that allowed the partial view of the loop to decide which partial view the contact should display if there is more than one way of presenting the data.
If you place these partial views on a shared flash drive, they can be used throughout the application.
Alternatively, you can use the AJAX / jQuery call for action controllers. This action will then return a PartialView, which can then be displayed on the screen. Makes your site very attractive if you do not refresh the entire page.
griegs
source share