Thursday, October 9, 2008

ASP.NET AJAX 3.5 and AjaxControlToolkit with SharePoint

Enabling Ajax in the SharePoint application was the challenge for the developers. But now technology is difference and life is more easier . Now you can use ASP.NET Ajax extension features inside the SahrePoint

How to :

1.) Follow the instructions in the following SharePoint Team Blog post:

Integrating ASP.NET AJAX with SharePoint

2.) Add th
e following assembly bindings to your SharePoint web.config. (This will redirect your AJAX 1.1 assemblies to use AJAX 3.5.)

2.) Add the following assembly bindings to your SharePoint web.config. (This will redirect your AJAX 1.1 assemblies to use AJAX 3.5.)



<configuration >
<runtime >
<assemblyBinding >
<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 >
</configuration >



Keep this link also in mind http://daniellarson.spaces.live.com/


Happy coding .............

No comments: