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.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.