Switching between mobile and desktop hosts (ASP.NET MVC 4)
Join the DZone community and get the full member experience.
Join For FreeIntroduction:
ASP.NET MVC 4 comes with a bunch of new features including lots of features for mobile. Mobile features include Mobile Optimized Project Templates, Display Modes, View Switcher, Browser Overriding, etc. In addition to these features, you may need to use different hosts for mobile and desktop version of the site, because major websites already use a different host name, depending on the type of the invoking client. For example, twitter.com uses mobile.twitter.com for mobile and facebook.com uses m.facebook.com. In this article, I will show you how to use different host name for desktop and mobile.
Description:
First of all you need create a new ASP.NET MVC 4 application. Then, create a new RequestSwitcherAttribute.cs file and add the following lines in this file,
public class RequestSwitcherAttribute : ActionFilterAttribute { string desktopHost, mobileHost; public RequestSwitcherAttribute(string desktopHost, string mobileHost) { if (string.IsNullOrWhiteSpace(desktopHost) || string.IsNullOrWhiteSpace(mobileHost)) throw new ArgumentNullException("Host or MobileHost"); this.desktopHost = desktopHost; this.mobileHost = mobileHost; } public override void OnActionExecuting(ActionExecutingContext filterContext) { var context = filterContext.HttpContext; var request = context.Request; var port = request.Url.Port; var host = request.UserHostName; var device = context.GetOverriddenBrowser(); if ((device.IsMobileDevice && host != mobileHost) || (!device.IsMobileDevice && host != desktopHost)) { string url = (request.IsSecureConnection ? "https://" : "http://") + (device.IsMobileDevice ? mobileHost : desktopHost) + ((port == 80 || port == 443) ? "" : ":" + port) + request.RawUrl; filterContext.Result = new RedirectResult(url); } } }
This is an action filter which simply checks whether the request is coming from desktop or mobile. Then, it will compare the site's mobile/desktop host name with the current request host name. The filter will redirect the user to mobile/desktop host if the current request host name does not match with mobile/desktop host name.
Now just open global.asax.cs file and register this filter globally,
public static void RegisterGlobalFilters(GlobalFilterCollection filters) { filters.Add(new HandleErrorAttribute()); filters.Add(new RequestSwitcherAttribute("::1", "127.0.0.1")); }
Note that for testing purpose, I have used ::1(localhost, loopback address) host name for desktop and 127.0.0.1 host name for mobile. Feel free to replace it with your actual host name. When doing so, you need to map your desktop and mobile host dns name.
Summary:
Lot of sites today uses different host name for desktop and mobile. In this article, I showed you how to let the mobile user to use mobile host and desktop user to use desktop host. Hopefully you will enjoy this article too.
Opinions expressed by DZone contributors are their own.
Comments