vote up 0 vote down star

Hi

Looking at the new ASP.NET MVC framework it comes with javascript files for both ASP.NET AJAX and JQuery.

Can someone explain what ASP.NET AJAX gives me that JQuery doesn't?

Do I need to use both and can you give me examples where I would/would not need to use both?

I've used JQuery on plenty of non ASP.NET projects (PHP and prototype sites) and have used JQuery Ajax quite happily, but I'm unsure what's best to use for ASP.NET.

Thanks for your time Sniffer

flag

80% accept rate

2 Answers

vote up -1 vote down

I've recently been writing ASP.NET MVC pages without Microsoft AJAX. Conclusions? You need to do a bit more wiring to get it working, especially with server side communications (tip: use JSON.NET, not the built-in stuff), but it is vastly shorter and more readable. I won't be using Microsoft AJAX again.

ASP.NET AJAX gives you:

  1. a bunch of ASP.NET controls that provide AJAX functionality. These are painful to use and even more painful to write. jQuery extensions are much cleaner, but have a steeper learning curve for an ASP.NET programmer.
  2. The ability to auto-generate classes which perform AJAX calls. This is really cool, but you can live without it.
  3. A namespace and event model, which you won't need if you program jQuery style.
  4. The ability to do partial renders of pages. Only useful if you're not using MVC, and rarely advisable even then.

Conclusion: Use jQuery, remove Microsoft AJAX.

link|flag
vote up 0 vote down

A difference of opinion then(!), but thanks for the feedback.

For info, I found this thread which answers my questions a little more clearly.

http://stackoverflow.com/questions/492770/jquery-vs-microsoftajax-in-asp-net-mvc

I think I'll be going with just jQuery for the comfort factor, easier to read code, small file sizes, etc. and see how I go.

Thanks again Sniffer

link|flag
And another thread which goes in favour of jQuery: stackoverflow.com/questions/794678/… – Sniffer Apr 28 at 7:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.