Is there any way to force my asp.net application to load the assembly from local bin directory since there is another older version of the assembly with the same name in the
Based on the excerpted notes on assembly loading order in this answer: How to prevent a .NET application from loading/referencing an assembly from the GAC?
I am guessing that calling LoadLibrary on the local DLL file before asking the library to load as an assembly, might move it up in the search order for you.
Sadly, I am not sure how to get your LoadLibrary call to run before the framework starts loading referenced assemblies.
So this is just an idea, not a full answer.