Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2420
Error message loading AppStyList v12.1 on Windows 7 x64
posted

I've had this before and fixed it by copying a new config file from somewhere but that was for 10.1. See attached screenshot.

How do I fix this?

Cheers, Rob.

Parents
No Data
Reply
  • 2420
    posted

    Answering my own enquiry. To get this working before, I had to replace Infragistics2.Web.AppStyList10.3.exe.config with another version I found elsewhere (can't remember where). Same fix works for  Infragistics2.Web.AppStyList10.3.exe.config. Installed version:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <startup>
        <supportedRuntime version="v2.0.50727" />
        <supportedRuntime version="v4.0" />
      </startup>
    </configuration>

    Change to:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <startup>
        <supportedRuntime version="v2.0.50727" />
        <supportedRuntime version="v4.0" />
      </startup>
      <runtime>  
       <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v2.0.50727">  
      <dependentAssembly>  
       <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>  
       <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly>  
      <dependentAssembly>  
       <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>  
       <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly>  
     </assemblyBinding>  
      </runtime>  
    </configuration> 

    And AppStyList now loads.

    Rob.

Children