RadControls for ASP.NET AJAX

RadControls for ASP.NET AJAX

Visual Studio 2008 automatically adds binding redirects in the web.config file:

Copyweb.config
<runtime>
   <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
       <dependentAssembly>
           <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
           <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
       </dependentAssembly>
       <dependentAssembly>
           <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
           <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
       </dependentAssembly>
   </assemblyBinding>
</runtime>

This significantly improves the interoperability scenarios and you can create applications with reference to System.Web.Extensions (v1.0) with VS2008.