From 4795bb9f43b4bc7fda191642bde7f6ef3e5b7a21 Mon Sep 17 00:00:00 2001 From: hartvig Date: Thu, 23 Dec 2010 22:14:38 -0100 Subject: [PATCH] Fixes caching issue in IE installer --- umbraco/presentation/install/utills/p.aspx.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/umbraco/presentation/install/utills/p.aspx.cs b/umbraco/presentation/install/utills/p.aspx.cs index b7ce083302..d778ff90d0 100644 --- a/umbraco/presentation/install/utills/p.aspx.cs +++ b/umbraco/presentation/install/utills/p.aspx.cs @@ -14,6 +14,12 @@ namespace umbraco.presentation.install.utills protected void Page_Load(object sender, EventArgs e) { + // Stop Caching in IE + Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); + + // Stop Caching in Firefox + Response.Cache.SetNoStore(); + string feed = Request.QueryString["feed"]; string url = "http://our.umbraco.org/html/twitter";