Asychronous page update with ASP.NET MVC

Posted by Graham on Stack Overflow See other posts from Stack Overflow or by Graham
Published on 2010-03-14T13:16:47Z Indexed on 2010/03/14 13:25 UTC
Read the original article Hit count: 161

Filed under:
|

Hi,

I'm learning ASP.NET MVC 1.0 and need to implement an asynchronous/dynamic page update. I'm new to MVC and jQuery so I'm not sure what to look for.

What I want to do is to allow a user to start a monitoring a domain layer function (similar to a news ticker) and then do a partial page update based on the continously changing results.

In ASP.NET I'd do this with a javascript timer to cause a postback, and an AJAX update panel..... but this seems a bit "hacky" for ASP.NET MVC. Is there a better way?

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about asynchronous