In Cache.Insert method, I have onRemoveCallback delegate to update the existing label text. On debugging the code, delegate got called; but label didn't refresh. Any reason?
Cache.Insert("FileCache", File.ReadAllText(@"c:\temp\test1.txt"), agg, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, new CacheItemRemovedCallback(RemoveCallBack));
In RemoveCallBack method, existing label text is updated; but not reflected in the user interface screen. On debugging the code, I noticed that the control gets in; but the changes are not reflected.