I store data in
HttpContext.Current.Application.Add(appKey, value);
And read data by this one:
HttpContext.Current.Application[appKey];
This has the advantage for me that is using a key for a value but after a short time (about 20 minutes) it does not work, and I can not find [appKey],because the application life cycle in iis data will lose. i want to know is that another way to store my data by key and value? i do not want sql server,file,... and want storing data on server not on client
i store users some data in it.
thanks for your helping