I\'m taking a look at jQuery templates. It looks really interesting - easy syntax, easy to use, very clean.
However, I can\'t really see why it\'s better to use jQuery
I agree that these do overlap. There are several different ways to implement the same piece of software, and much of your decision on what to use depends on your personal preference and the context of your software.
Partial view advantages:
jQuery Templates advantages:
So in essence partial views are the more stable and jquery templates are (for ajax websites) the more performant choice. I therefore use partial views for less frequented web pages which need to be developed quickly and jQuery templates for heavily ajaxed web pages where performance really matters.