stimms
stimms

Reputation: 44094

ASP.net MVC with Ajax

Does anybody know of an up to date tutorial on using Ajax with ASP.net MVC? Most of what I can find seems to talk about older versions of MVC and I suspect that this is an area where there has been a lot of change of late.

Upvotes: 3

Views: 1184

Answers (3)

Brian Vallelunga
Brian Vallelunga

Reputation: 10201

If you're looking for form-releated Ajax support in MVC, check out Scott Hanselman's post:

http://www.hanselman.com/blog/ASPNETMVCPreview4UsingAjaxAndAjaxForm.aspx

It seems there isn't currently good support for end-to-end validation with Ajax forms. Most articles I've read use a combination of a client-side library and server-side data annotations. I'm hoping the full beta release of MVC will include better support.

Also, be sure to note that Microsoft will be including jQuery as an officially supported library for Ajax development. Scott Guthrie annoinced this at:

http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx

Upvotes: 1

David Alpert
David Alpert

Reputation: 3187

Stephen Walter's post "ASP.NET MVC Application Building: Forums #6 – Ajax" seems to be focused on Microsoft ASP.NET AJAX.

A quick search on google for "ASP.NET MVC jquery" brings up several resources on non-MS javascript.

I lean towards the non-MS AJAX demos & tutorials as they show platform-agnostic patterns and practices.

Upvotes: 1

Related Questions