Scottie
Scottie

Reputation: 11308

AJAX - ASP.Net MVC or jQuery?

It appears that both jQuery and ASP.Net MVC have ways of performing AJAX functions.

Which do you prefer for you AJAX functionality?

Do you typically use one over the other, or does it depend?

Upvotes: 0

Views: 330

Answers (2)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

If you are comparing Microsoft Ajax vs jQuery than there is absolutely no doubt that you should pick jQuery. I have used Microsoft Ajax back in the time when I was doing classic WebForms and with ASP.NET MVC I consider this framework as totally obsolete compared to jQuery. I never use it in any ASP.NET MVC application. Actually in ASP.NET MVC 3 even Microsoft deprectaed it and replaced it with jQuery as the default framework. But even if you are doing ASP.NET MVC 1 or 2 you should use jQuery.

Upvotes: 3

aziz punjani
aziz punjani

Reputation: 25766

You're comparing apples to oranges. ASP.NET MVC is a web framework, jQuery is a Javascript library.

Upvotes: 3

Related Questions