, так как вы не предоставили общий доступ к коду, вы можете попробовать обернуть ваш второй партиал в div обертки, например,
<div id="secondpartial">
@RenderPartial("partialName")
</div>
позволяет предположить, что ссылка внутри первого партиала имеет id="firstPartialLink"
<a href="#" id="firstPartialLink">Refresh Second Partial</a>
прикрепить к нему обработчик события click
$(function(){
$("#firstPartialLink").click(function(e){
e.preventDefault();
$.ajax({
url:'@Url.Action("SecondPartialActionResult","Controller")',
type:'GET'
dataType:'html',
success:function(data){
$("#secondpartial").html(data);
},
error:function(jXhr){
if(typeof console !='undefined')
console.log(jXhr.responseText);
}
});
});
});
, ActionResult будет выглядеть как
public ActionResult SecondPartialActionResult(){
return PartialView("viewname")
}