tags:

views:

467

answers:

1

Hi , i need to auto refresh a partialView in the page every second (or a set interval of time)

i thought of the following method is this rite

  loop 
{
     setInterval(function() {  <%Html.RenderPartial("partialview", Model);%> } ,1000 );
}

or is there a better way using ajax stuff ?

+1  A: 

The easiest way to do this would be to have a Controller action which returns your partial view then in the setInterval function just make an ajax get request. Something like this:

  $.ajax({
            url: '/MyController/PartialViewAction',
            type: "GET",
            success: function(result) {
               $("#partialContainer").html(result); 
            }
        });
willbt