We have a production server in which there is an ASP.net 2.0 application that works with Ajax 1.0 and the corresponding set of tools (Toolkit version 1.0.20229).
I was asked to move another assembly of the application using ASP.net 3.5, which also utilities the latest ASP.NET AJAX and related tools (Toolkit Version 3.0.X).
Can these two applications exist on the same server if I install the .NET Framework 3.5 (current version on server 2.0)?
What should I do to make sure there are no compatibility issues?
Please let me know if the question is not clear.
Thank,
The mar
RESULT: Installed structure 3.5. Changes to the configuration file were made in accordance with the errors received: deleted the following entry:
<httpModules> <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </httpModules>
I had to remove the next section for the WCF service in addition to the above
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
source
share