English 中文(简体)
Can somebody explain the differences, status and future of the various ASP.NET AJAX libraries and toolkits?
原标题:

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:

  • ASP.NET AJAX 1.0 (available for ASP.NET 2.0 in a separate package called ASP.NET 1.0 Extensions)
  • ASP.NET AJAX 3.5 (included with ASP.NET 3.5)
  • ASP.NET AJAX 4.0 (included with ASP.NET 4.0)

Then come the various projects on CodePlex and elsewhere:

ASP.NET AJAX Control Toolkit (aka Original Ajax Control Toolkit)

  • Samples
  • CodePlex
  • It seems that the September 2009 Release is the final release of the Original Ajax Control Toolkit and that it s been superseded by...

Ajax Control Toolkit in ASP.NET Ajax Library

Microsoft Ajax Library Preview

Links to useful articles, roadmaps would be useful.

最佳回答

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.

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签