EPiWiki.se  - EPiServer notes shared with others
 

Snipplet to make a redirect of AJAX 1.0 to 3.5

[Edit]
Snippet for web.config to make a AJAX 1.0 site work with a .Net 3.5 site.


<configuration>
.
.
.
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
Version author:
Mattias Lövström

EPiServer version

All