Configure asp.net site with ASP.NET Ajax Control Toolkit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:41:05Z http://stackoverflow.com/feeds/question/447369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/447369/configure-asp-net-site-with-asp-net-ajax-control-toolkit 1 Configure asp.net site with ASP.NET Ajax Control Toolkit tidychaos 2009-01-15T16:08:32Z 2009-05-08T15:25:23Z <p>I have an application that has been converted from VS2005 2.0 framework to VS2008 3.5 framework. I am attempting to add the ability to use the AjaxControlToolkit DLL <a href="http://www.codeplex.com/AjaxControlToolkit/Release/ProjectReleases.aspx?ReleaseId=16488" rel="nofollow">[AjaxControlToolkit-Framework3.5SP1-DllOnly.zip]</a> download only within my project. I have followed the configuration setups to get the project to build, and have not been successful in getting a control to load.</p> <p><a href="http://stackoverflow.com/questions/40116/how-do-i-install-and-use-the-aspnet-ajax-control-toolkit-in-my-net-35-web-appli">How do I install and use the ASP.NET AJAX Control Toolkit in my .NET 3.5 web applications?</a></p> <p>and </p> <p><a href="http://www.asp.net/AJAX/documentation/live/ConfiguringASPNETAJAX.aspx" rel="nofollow">Configuring ASP.NET AJAX</a></p> <p>I am currently running into an error after adding all the web.config settings to my web application. </p> <h2>Server Error in '/' Application.</h2> <p>Configuration Error </p> <p>Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. </p> <p>Parser Error Message: Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.</p> <p>Source Error: </p> <pre> &lt;compilation defaultLanguage="vb" debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/&gt; &lt;/assemblies&gt; &lt;expressionBuilders&gt; </pre> <p>I imagine others have had this problem, but can't find any resources that will help me fix this. Thanks in advance for the help.</p> http://stackoverflow.com/questions/447369/configure-asp-net-site-with-asp-net-ajax-control-toolkit/840340#840340 1 Answer by Mufasa for Configure asp.net site with ASP.NET Ajax Control Toolkit Mufasa 2009-05-08T15:18:19Z 2009-05-08T15:18:19Z <p>That is the old version. Change the line in your web.config to use the 3.5 version:</p> <pre><code>&lt;add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; </code></pre> <p>(Yes, this is a common conversion error.)</p> http://stackoverflow.com/questions/447369/configure-asp-net-site-with-asp-net-ajax-control-toolkit/840378#840378 0 Answer by Jon Jones for Configure asp.net site with ASP.NET Ajax Control Toolkit Jon Jones 2009-05-08T15:25:23Z 2009-05-08T15:25:23Z <p>I have this issue a lot from web.config inheritance. You can also add binding re-directs. Below will re-direct any calls to the old version to the new version, you can also set this to work the other way round.</p> <pre><code> &lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; </code></pre>