I have a DLL I developed and 2 web applications uses it. I want this DLL to store data in the cache but I want it to use its own cache and not duplicated it among the 2 web apps...
how can that be done? since HttpContext.current will reference to the current cache application (which in my case is 2).
I do not want duplications.
Thanks