Reputation: 11235
which one should use i have following options available
ASP.NET ajax with its ajax control toolkit controls
ASP.NET ajax with jQuery
Ajax Pro http://www.ajaxpro.info/
Please suggest which one to use keeping in mind performance and page size.
Please if any one can shed some light on pros and cons of each of the above
Thanks
Upvotes: 0
Views: 179
Reputation:
for performance + page size, Asp.net MVC + jQuery is the best. But from your option, I think #1 page size can be reduced by g-zip. Personally, I like Ajax control toolkit because it's easy to implement.
Upvotes: 0
Reputation: 30589
A month ago I would have chosen Ajax Control toolkit but after spending time behind the scenes with JQuery it will have my personal vote. Especially if using MVC, however I am having great success refactoring a older Ajax websites developed in Framework 2.0.
JQuery offers a lot more then the Ajax control toolkit and it allows more flexibility, definitly something we will see more of in the future if you follow the commitment Microsoft has made into it.
Upvotes: 2
Reputation: 36035
Whichever you use, just avoid using anything that post all the form values. Update Panels is one of those.
That means:
I would stick with JQuery. It works great, and you get skills that work in other platforms :).
Upvotes: 0