Sharing data between two async requests in ASP.NET MVC
I want to share data between two async requests to the server. When some session variable value is changed in the first request (the value is changed continuously) I want the updated values in the second request. How i should do this? ...