I have a <div>
on my html page that is filled with html helpers that are getting their contents from the Model of the page.
<div id="ChatArea">
@Html.DisplayFor(a => Model.ChatReferenceTime) <br />
@Html.DisplayFor(a => Model.ChatReferenceContent)
...
</div>
i want to refresh this div every 5 seconds to get updated info from the controller... - is there a way to do this without having the whole page refreshed every 5 seconds with an updated Model?