February 2010
Beginner
400 pages
11h 13m
English
A number of Visual Studio 2010 project templates such as ASP.NET MVC 2 and ASP.NET web application projects include the Microsoft AJAX libraries out of the box. The libraries will, however, be maintained separately from Visual Studio/.NET 4.0, so to obtain the latest release, you will need to download it from http://ajax.codeplex.com/.
The easiest (but not necessarily best) way to include the Microsoft AJAX libraries in your project is to use the ASP.NET ScriptManager control on your page:
<asp:ScriptManager runat="Server" />
ScriptManager is a great little control that takes care of referencing Microsoft script files and helps you manage your own scripts. In previous ...