Disabilitare cache browser sito asp.net

m.pittini

Utente Attivo
26 Feb 2009
232
6
0
Ciao a tutti,
Sto cercando di impostare la disabilitazione della cache del browser per tutte le pagine del mio sito (realizzato in .NET) ma non ci riesco.
Fin'ora ho provato con queste due righe di codice:
Codice:
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Ma non sembrano sortire alcun effetto... il sito continua a restare in cache...
Dove sbaglio?
 
Ciao, prova con il seguente codice nel file Global.asax

Codice:
 protected void Application_BeginRequest()
    {
        HttpContext.Current.Response.Cache.SetAllowResponseInBrowserHistory(false);
        HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        HttpContext.Current.Response.Cache.SetNoStore();
        Response.Cache.SetExpires(DateTime.Now);
        Response.Cache.SetValidUntilExpires(true);
    }
 

Discussioni simili