Forum
Örnek bir kod buldum bu kod mozillada işe yarıyor ama ie'de cache silinmediği için programda yaptığım güncellemeler her defasında kullanılamıyor.
Merhaba;
Sorunun çözümü açısından lütfen kullandığınız kod'u belirtirmisiniz.
Tayfun DEĞER
Cisco Champions, vExpert, VCP4/5/6, VCP5-DT, VCP-Cloud
https://www.tayfundeger.com
Mail: [email protected]
Örnek Kod:
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Default.aspx code kısmına yazıyorum bu kodu
Merhaba,
Bunu deneyebilirsiniz.
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
Response.Cache.SetNoStore();
Response.Buffer = true;
Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.AppendHeader("Cache-Control", "no-store");
Response.Expires = -1441;
Saygılar,
Bu kodu denedim ama sadece IE 7 ve 8 de cache siliyor.Benim için önemli olan mozillada silmesi.Bu kod mozillada cache bilgisini silmiyor malesef.Mozilla firefoxta nasıl cache temizlerim ?
Ayrıca başka bir kod buldum ama this.myapp.source kısmına benim projenin app adını gösteremiyorum.Bu sorunu nasıl aşabilirim ?
var versionNumber = Assembly.GetExecutingAssembly().GetName().Version.ToString();
this.myApp.Source += "?" + versionNumber;