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?
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?
If the requests are part of the same session, just use the session on the HttpContext. If not, then store the variable in the application context and update/use it from there.