Fixes caching issue in IE installer

This commit is contained in:
hartvig
2010-12-23 22:14:38 -01:00
parent 63d5615698
commit 4795bb9f43

View File

@@ -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";