Fixes caching issue in IE installer
This commit is contained in:
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user