tags:

views:

78

answers:

4

What are the best tools for AJAX development? I know of firebug for firefox, what other great tools are there for AJAX development?

+1  A: 

jquery on the client side. Makes it easy to request different data types, deal with different states of response, and hides away complexities.

gson on the server if you are using Java, converts Java objects to JSON output, and vice versa.

larson4
A: 

DevExpress has a lot of out of the box AJAX stuff with their controls. They also have one cool control the ASPxCallback which allows you to implement your own that way. You can check it out here.

Microsoft also has AJAX framework for ASP.NET. Check it out here.

Chalkey
A: 

If you're going to be doing .NET development I suggest using WCF services on the server-side. You can create awesome little RESTful WCF services that will play nicely with jquery and Ajax.

Terry Donaghe
+1  A: 

You meant YSlow. Do you know that Google has recently realized firebug plug-in called "Page Speed".

It is great, especially the documentation.

innerJL