// Removing data from cache
System.Web.HttpContext.Current.Cache.Remove("Mydata");
// Storing data into cache
System.Web.HttpContext.Current.Cache["Mydata"] = MyObject; // this can be a string, or any object
// Getting data from cache
object obj = System.Web.HttpContext.Current.Cache["Mydata"];