I'm trying to remove a specific item from the ASP.NET Cache in order to force a reload. Something like this:
System.Web.HttpContext.Current.Cache.Remove(SomeKey);
But then I check it immediately afterward, and Cache[SomeKey] is NOT null. It still contains a reference to this item I want to clear. Am I missing something obvious here?