I have created a website in Visual Studio 2010 (File -> New Web Site), and to the resulting solution file I have added two more web sites. I know that for any one of the web sites I can use context.Application to share values among multiple users. But is there a way to share values among users of the different web sites?
In other words, is there a “solution level” cache object of some kind in .NET? I have not managed to find any answer through search engines.
Thanks in advance for your help
When I need to share data between Webware, I prefer to develop a WCF service and provide those data via a Singleton service.
Then, each client can get same data from the Singleton service.