ASP.Net exposes Cache API to store data in the cache for retrieval later.
Getting Started
Store string
Cache["key"]="value";
Retrieve string
var value="";
if (Cache["key"] != null)
value = Cache["key"].ToString();
You can also use t...