How can I emulate the ASP.NET Ajax UpdatePanel when using ASP.NET MVC?

Posted by Gary McGill on Stack Overflow See other posts from Stack Overflow or by Gary McGill
Published on 2010-03-18T14:15:38Z Indexed on 2010/03/19 21:11 UTC
Read the original article Hit count: 222

Filed under:
|
|
|

In "traditional" ASP.NET (Web Forms), the UpdatePanel control lets you do a partial refresh of a part of a page. You don't need to write much code to hook this up.

What's the equivalent in ASP.NET MVC? I'm guessing I'd need to use a partial view for the bit that I want to update, then on the client side retrieve that HTML and pump it into the innerHtml of the correct DIV?

A tutorial/example would be helpful...

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about ASP.NET