Hi! My asp.net application loads an assembly and creates a class instance from an object within it. The assembly itself has a reference to a dll called "Aspose.Cells.dll" which it can access without any problems and is located on the same path as the assembly file itself. However, when i make a method call to one of its methods i get this error:
Could not load file or assembly 'Aspose.Cells, Version=4.1.2.0, Culture=neutral, PublicKeyToken=9a40d5a4b59e5256' or one of its dependencies.
I figure that i need to make my asp.net application reference this dll as well but everything ive tried so far has failed. The assembly dll which is loaded is not located within the root of the web application and im hoping that it doesnt have to be.
I can load the assembly like this: Assembly asm = Assembly.LoadFile(@"D:\Dev\EasyFlow\Plugins\ImportExportLibrary\bin\Debug\Aspose.Cells.dll");
But i can not use it like this: AppDomain newDomain = AppDomain.CreateDomain("testAspose"); Assembly asm = newDomain.Load(System.IO.File.ReadAllBytes(@"D:\Dev\EasyFlow\Plugins\ImportExportLibrary\bin\Debug\Aspose.Cells.dll"));
Perhaps theres a better way to do it?
