diff --git a/MP-IO/Site.Mobile.Master b/MP-IO/Site.Mobile.Master
deleted file mode 100644
index 436338e7..00000000
--- a/MP-IO/Site.Mobile.Master
+++ /dev/null
@@ -1,23 +0,0 @@
-<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.Mobile.master.cs" Inherits="MP_IO.Site_Mobile" %>
-<%@ Register Src="~/ViewSwitcher.ascx" TagPrefix="friendlyUrls" TagName="ViewSwitcher" %>
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MP-IO/Site.Mobile.Master.cs b/MP-IO/Site.Mobile.Master.cs
deleted file mode 100644
index b24be514..00000000
--- a/MP-IO/Site.Mobile.Master.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System;
-
-namespace MP_IO
-{
- public partial class Site_Mobile : System.Web.UI.MasterPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
-
- }
- }
-}
\ No newline at end of file
diff --git a/MP-IO/Site.Mobile.Master.designer.cs b/MP-IO/Site.Mobile.Master.designer.cs
deleted file mode 100644
index 1fac7ca0..00000000
--- a/MP-IO/Site.Mobile.Master.designer.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MP_IO
-{
-
-
- public partial class Site_Mobile {
-
- ///
- /// HeadContent control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.WebControls.ContentPlaceHolder HeadContent;
-
- ///
- /// form1 control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// FeaturedContent control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.WebControls.ContentPlaceHolder FeaturedContent;
-
- ///
- /// MainContent control.
- ///
- ///
- /// Auto-generated field.
- /// To modify move field declaration from designer file to code-behind file.
- ///
- protected global::System.Web.UI.WebControls.ContentPlaceHolder MainContent;
- }
-}
diff --git a/MP-IO/ViewSwitcher.ascx b/MP-IO/ViewSwitcher.ascx
deleted file mode 100644
index 958ec259..00000000
--- a/MP-IO/ViewSwitcher.ascx
+++ /dev/null
@@ -1,4 +0,0 @@
-<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ViewSwitcher.ascx.cs" Inherits="MP_IO.ViewSwitcher" %>
-
\ No newline at end of file
diff --git a/MP-IO/ViewSwitcher.ascx.cs b/MP-IO/ViewSwitcher.ascx.cs
deleted file mode 100644
index cad07a7f..00000000
--- a/MP-IO/ViewSwitcher.ascx.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using Microsoft.AspNet.FriendlyUrls.Resolvers;
-using System;
-using System.Web;
-using System.Web.Routing;
-
-namespace MP_IO
-{
- public partial class ViewSwitcher : System.Web.UI.UserControl
- {
- protected string CurrentView { get; private set; }
-
- protected string AlternateView { get; private set; }
-
- protected string SwitchUrl { get; private set; }
-
- protected void Page_Load(object sender, EventArgs e)
- {
- // Determine current view
- var isMobile = WebFormsFriendlyUrlResolver.IsMobileView(new HttpContextWrapper(Context));
- CurrentView = isMobile ? "Mobile" : "Desktop";
-
- // Determine alternate view
- AlternateView = isMobile ? "Desktop" : "Mobile";
-
- // Create switch URL from the route, e.g. ~/__FriendlyUrls_SwitchView/Mobile?ReturnUrl=/Page
- var switchViewRouteName = "AspNet.FriendlyUrls.SwitchView";
- var switchViewRoute = RouteTable.Routes[switchViewRouteName];
- if (switchViewRoute == null)
- {
- // Friendly URLs is not enabled or the name of the switch view route is out of sync
- this.Visible = false;
- return;
- }
- var url = GetRouteUrl(switchViewRouteName, new { view = AlternateView, __FriendlyUrls_SwitchViews = true });
- url += "?ReturnUrl=" + HttpUtility.UrlEncode(Request.RawUrl);
- SwitchUrl = url;
- }
- }
-}
\ No newline at end of file
diff --git a/MP-IO/ViewSwitcher.ascx.designer.cs b/MP-IO/ViewSwitcher.ascx.designer.cs
deleted file mode 100644
index e8ca9853..00000000
--- a/MP-IO/ViewSwitcher.ascx.designer.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MP_IO
-{
-
-
- public partial class ViewSwitcher {
- }
-}