protected void Button1_Click(object sender, EventArgs e) { //Loop thorough items in cahce foreach (System.Collections.DictionaryEntry entry in HttpContext.Current.Cache) { //Clear the items one by one HttpContext.Current.Cache.Remove((string)entry.Key); } }
Thanks, A2H My Blog
Login to post response