\ No newline at end of file
diff --git a/CMS_SC/ViewSwitcher.ascx.cs b/CMS_SC/ViewSwitcher.ascx.cs
deleted file mode 100644
index 05f65b8..0000000
--- a/CMS_SC/ViewSwitcher.ascx.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.Routing;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using Microsoft.AspNet.FriendlyUrls.Resolvers;
-
-namespace CMS_SC
-{
- 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 swith view route is out of sync
- this.Visible = false;
- return;
- }
- var url = GetRouteUrl(switchViewRouteName, new { view = AlternateView });
- url += "?ReturnUrl=" + HttpUtility.UrlEncode(Request.RawUrl);
- SwitchUrl = url;
- }
- }
-}
\ No newline at end of file
diff --git a/CMS_SC/ViewSwitcher.ascx.designer.cs b/CMS_SC/ViewSwitcher.ascx.designer.cs
deleted file mode 100644
index 55da08c..0000000
--- a/CMS_SC/ViewSwitcher.ascx.designer.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-//------------------------------------------------------------------------------
-//