This should be relatively simple for the MVC experts out there, but I\'m still learning the ropes.
View
You can use jQuery to request html as well as Json from the controller. So your jQuery could look like this:
$.get(action, null, function(data){
$('#someDiv').html(data);
}, 'html');
and you controller could return:
return PartialView("SomePartial", Model)
And the html would be rendered to the screen