diff --git a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
index bdc4b99c2e..c625eb0d98 100644
--- a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
+++ b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
@@ -2103,7 +2103,6 @@
UserControl
-
Designer
diff --git a/src/Umbraco.Web.UI/umbraco/cacheBrowser.aspx b/src/Umbraco.Web.UI/umbraco/cacheBrowser.aspx
deleted file mode 100644
index 7aa26dda00..0000000000
--- a/src/Umbraco.Web.UI/umbraco/cacheBrowser.aspx
+++ /dev/null
@@ -1,16 +0,0 @@
-<%@ Page language="c#" Codebehind="cacheBrowser.aspx.cs" AutoEventWireup="True" Inherits="umbraco.cms.presentation.cacheBrowser" trace="true" %>
-
-
-
- cacheBrowser
-
-
-
-
-
-
-
-
-
diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj
index 9012a9564e..71033887a7 100644
--- a/src/Umbraco.Web/Umbraco.Web.csproj
+++ b/src/Umbraco.Web/Umbraco.Web.csproj
@@ -591,9 +591,6 @@
-
- ASPXCodeBehind
-
ASPXCodeBehind
diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/cacheBrowser.aspx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/cacheBrowser.aspx.cs
deleted file mode 100644
index 0e923ffc03..0000000000
--- a/src/Umbraco.Web/umbraco.presentation/umbraco/cacheBrowser.aspx.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-using System.Collections;
-using umbraco.BasePages;
-
-namespace umbraco.cms.presentation
-{
- ///
- /// Summary description for cacheBrowser.
- ///
- public partial class cacheBrowser : UmbracoEnsuredPage
- {
- public cacheBrowser()
- {
- CurrentApp = BusinessLogic.DefaultApps.developer.ToString();
-
- }
- protected void Page_Load(object sender, System.EventArgs e)
- {
- // Cache removal checks
- if (Request.QueryString["clearByType"] != null)
- ApplicationContext.ApplicationCache.ClearCacheObjectTypes(Request.QueryString["clearByType"]);
- else if (Request.QueryString["clearByKey"] != null)
- ApplicationContext.ApplicationCache.ClearCacheItem(Request.QueryString["clearByKey"]);
-
- // Put user code to initialize the page here
- Hashtable ht = cms.businesslogic.cache.Cache.ReturnCacheItemsOrdred();
- foreach (string key in ht.Keys)
- {
- Response.Write("" + key + ": " + ((ArrayList)ht[key]).Count.ToString() + " (Delete)
");
- if (Request.QueryString["key"] == key)
- for (int i = 0; i < ((ArrayList)ht[key]).Count; i++)
- Response.Write(" - " + ((ArrayList)ht[key])[i] + " (Delete)
");
- }
- }
- protected void Button1_Click(object sender, System.EventArgs e)
- {
- ApplicationContext.ApplicationCache.ClearAllCache();
- }
-
- protected System.Web.UI.HtmlControls.HtmlForm Form1;
- protected System.Web.UI.WebControls.Button Button1;
- }
-}