Configure asp.net site with ASP.NET Ajax Control Toolkit - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:41:05Zhttp://stackoverflow.com/feeds/question/447369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/447369/configure-asp-net-site-with-asp-net-ajax-control-toolkit1Configure asp.net site with ASP.NET Ajax Control Toolkittidychaos2009-01-15T16:08:32Z2009-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>
<compilation defaultLanguage="vb" debug="true">
<assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
<expressionBuilders>
</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#8403401Answer by Mufasa for Configure asp.net site with ASP.NET Ajax Control ToolkitMufasa2009-05-08T15:18:19Z2009-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><add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</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#8403780Answer by Jon Jones for Configure asp.net site with ASP.NET Ajax Control ToolkitJon Jones2009-05-08T15:25:23Z2009-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> <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</code></pre>