I have a web application that references an external DLL (allows calling this product A.dll)
I updated my GAC, my web.configand my links, checked the versions and everything looks consistent.
However, when I run my application, the methods that I use from productA.dllcannot be called, and I get an error the specified module cannot be found.
I tried to create a Windows application and I can use it productA.dllperfectly.
Watching the run-time window for a web application, I noticed that the characters are productA.dllnot loading. Therefore, I assume that the module cannot be found.
The question is: why are the characters not loading?
Any advice on solution or diagnostic methods is welcome.
source
share