I understand that partial views are used to render parts of a view. But I can\'t understand what\'s the difference between return View() and return Partia
A controller action typically returns a PartialView when AJAX is used, and an update of the page region represented by the partial view is performed. The normal way to use partial views is simply to call Html.RenderPartial inside your main view.