Hi,
I am able to run my code in development where the infragistics controls are installed. I have copied the DLL files to the bin folder on my test server and I'm receiving this runtime error:
Could not load file or assembly 'Infragistics.Web, Version=13.2.20132.2109, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' or one of its dependencies. The system cannot find the file specified.
Here are my references in the VS project:
<add assembly="Infragistics4.Web.v13.2, Version=13.2.20132.2109, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics4.WebUI.Documents.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics4.WebUI.Excel.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics4.WebUI.UltraWebChart.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics4.WebUI.Shared.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="Infragistics4.WebUI.WebHtmlEditor.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="Infragistics4.WebUI.UltraWebGrid.DocumentExport.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics4.WebUI.UltraWebGrid.v10.3, Version=10.3.20103.2187, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
These dll files have been copied to the bin folder on my test server. What else am i missing?
Thanks,
Steve
Hello,This is a common scenario of referencing missing assembly and instead a similar version one is found. Details and solution could be found at the following links:The located assembly's manifest definition does not match the assembly reference.Net picking wrong referenced assembly version
Could not load file or assembly 'Infragistics4.Win.UltraWinToolbars.v13.2, Version=13.2.20132.2075, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Thank you very much for your response. I was able to fix the issue.
Regards,
I am checking the progress of this issue. Please let me know if you have additional questions!
Hello,
It is possible to use the existing 10.3 functionality together with the new product version you have purchased.
We have created version-free assemblies in order to make this possible. This will allow you to preserve the code and functionalities of the classic controls and still have the ability to add Aikido based controls respectively use the updated functionality for these.
When your application is ready for publishing, remove the references to the DLLs with versioned assembly names and add references to the version-less assemblies. You may place the version-less DLLs in the bin folder of your application or in the GAC.
The main idea behind using the version-free assemblies it to be able to use the Aikido based controls in projects using the older ones. This however does not mean they will provide additional/more functionality (or supported environment), than the existing in the classic controls assemblies.
“As of the 2010.3 release, the version-less assemblies only support the DLLs to run the application. Should you need to open the application in Visual Studio ™ then you must revert the application to using versioned assembly names in order to get designer support. Once updates to the application are complete, you may configure the application to use the version-less assembly names once again before publishing.” Please refer to our official online documentation/Application Maintenance: http://help.infragistics.com/Doc/ASPNET/?page=ASPNET_Versionless_Assemblies.html
To be able to use the designer you need to include the design assemblies in your project at design time. To use them you will either need to place them in the Bin folder or in a Design folder that is in the Bin folder. Here is a ref to the default location of the Version Free assemblies: C:\Program Files (x86)\Infragistics\2013.2\ASP.NET\Version-Free. These assemblies will have design in their name. To design properly you will need to have the design assembly that corresponds to the runtime assemblies you are using. For deploying your website you just have to deploy the assemblies to with your website either in the bin folder or the GAC. The design assemblies aren’t required for deployment.
You can go to the following link to see which assemblies are used with which controls.http://help.infragistics.com/Doc/ASPNET/2013.2/CLR4.0/?page=Web_Assemblies.html
Additional useful resource:http://ko.infragistics.com/community/forums/t/73655.aspx