Reputation: 8508
I'm confused about the differences and relationships between the various Microsoft ASP.NET AJAX components/libraries/toolkits and particularly the naming of them.
It starts off relatively simple with ASP.NET AJAX itself:
Then come the various projects on CodePlex and elsewhere:
ASP.NET AJAX Control Toolkit (aka Original Ajax Control Toolkit)
Ajax Control Toolkit in ASP.NET Ajax Library
Microsoft Ajax Library Preview
Links to useful articles, roadmaps would be useful.
Upvotes: 3
Views: 360
Reputation: 50728
ASP.NET supports an AJAX framework for all three versions with different assemblies. The Ajax control toolkit was an add-on open source library that adds a variety of useful extenders and a few useful controls. They support 2.0, but a little while ago just started to release for 3.5. The preview is for ASP.NET AJAX 4.0, to illustrate what is coming, so it won't be labeled preview in the final release.
The final release in 4.0 will allow you to work completely on the client-side by making available a dynamic script loader to load the client-side components you need from the Ajax Control Toolkit, so you won't need any server side components, unless you want to still develop that way. Perfectly valid option.
HTH.
Upvotes: 1