I'm getting some data from the web service to my generic handler after uniform interval of 1 minute. I've a List type collection that holds each data received in the handler. with context.Application["mykey"] (which contains list).
In my web site, I gt all the data in this application object fine. But when day changes, i.e after 12 am, all the data is lost.
Is there a way, can I persist the data which was added to the list on previous day? Thanks.