AjaxControlToolkit Version Problem
If you have more than one version of AJAX Tool Kit in your System , there might be problem while developing an AJAX based pages ,
Error Message
Error 2 Assembly 'AjaxControlToolkit, Version=3.0.30512.17815, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' uses 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
Solution
This is due to the version Conflict , to solve this add the following tag in your web config file
<runtime>
<
assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly>
<
assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" Culture="neutral"/><bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0"/>
<
publisherProfile apply="no"/></dependentAssembly>
</
assemblyBinding>
</
runtime>
Revision number 1, Thursday, January 21, 2010 11:29:15 PM by asprabahar
This is not the most up to date version of this article. The most recent version can be found here.
You must Login to comment.
Revision #15
Sat, Feb 5, 2011 4:50 PM
by
|
AJAX
Asynchronous JavaScript and XML - It's Ajax and it's everywhere. Start at the ASP.NET Ajax site and work from there...there's a ton of resources at your disposal. Ajax Showcase - Check out some of the great sites that been built using Ajax. Ajax
|
Revision #3
Mon, Feb 4, 2008 8:00 AM
by
|
AJAX Extenders
ASP.NET AJAX can be easily extended to create almost any control you can imagine. Be sure to take a look at the ASP.NETAJAX Control Toolkit. Blog Posts ASP.NET AJAX SliderExtender Layout and Custom Appearance: Alessandro Gallo describes how to customize the
|
New
Fri, Jul 18, 2008 7:06 AM
by
|
AJAX and CSS
Cascading Style Sheets (CSS) is one of the core technologies in the AJAX architecture apart from XML, DOM, JSON and so forth. Here are some links on using CSS with AJAX: Create flickr-like editing fields using AJAX and CSS/ 26 best ways to implement ajax css
|
Revision #4
Thu, Nov 13, 2008 10:55 PM
by
|
AJAX Control Toolkit
Learn how to extend your ASP.NET AJAX applications using the ASP.NET AJAX Control Toolkit. ASP.NET AJAX Control Toolkit: Installation and getting started is a video that starts with the basics, including downloading and installing the toolkit. Blog Posts Four
|