How to clear cache on Silverlight 4.0?
i want to use this 开发者_开发知识库code but it only erase caches on mozilla browser.I want to use it for IE
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1)); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetNoStore();
精彩评论