Click here to Skip to main content
Licence CPOL
First Posted 24 Mar 2009
Views 69,085
Bookmarked 60 times

Detecting a mobile browser in ASP.NET

By | 24 Mar 2009 | Article
How to detect a mobile device accessing your ASP.NET website.

Introduction

A simple function to detect if a user vesting your site is on a mobile device or not.

Background

This is my first CodeProject article. The articles on this site have helped me out so much in learning .NET. I just hope this can help someone out as well.

I needed the ability to detect if a user was browsing from a mobile device or a normal web browser and redirect to the appropriate version of my site. I found very little ASP.NET tutorials that worked. So I decided to take a few different methods and language options I found on the net and put them into one simple ASP.NET method.

Using the Code

It is just a static boolean method that gets called, isMobileBrowser():

public static bool isMobileBrowser()
{
    //GETS THE CURRENT USER CONTEXT
    HttpContext context = HttpContext.Current;

    //FIRST TRY BUILT IN ASP.NT CHECK
    if (context.Request.Browser.IsMobileDevice)
    {
        return true;
    }
    //THEN TRY CHECKING FOR THE HTTP_X_WAP_PROFILE HEADER
    if (context.Request.ServerVariables["HTTP_X_WAP_PROFILE"] != null)
    {
        return true;
    }
    //THEN TRY CHECKING THAT HTTP_ACCEPT EXISTS AND CONTAINS WAP
    if (context.Request.ServerVariables["HTTP_ACCEPT"] != null && 
        context.Request.ServerVariables["HTTP_ACCEPT"].ToLower().Contains("wap"))
    {
        return true;
    }
    //AND FINALLY CHECK THE HTTP_USER_AGENT 
    //HEADER VARIABLE FOR ANY ONE OF THE FOLLOWING
    if (context.Request.ServerVariables["HTTP_USER_AGENT"] != null)
    {
        //Create a list of all mobile types
        string[] mobiles =
            new[]
                {
                    "midp", "j2me", "avant", "docomo", 
                    "novarra", "palmos", "palmsource", 
                    "240x320", "opwv", "chtml",
                    "pda", "windows ce", "mmp/", 
                    "blackberry", "mib/", "symbian", 
                    "wireless", "nokia", "hand", "mobi",
                    "phone", "cdm", "up.b", "audio", 
                    "SIE-", "SEC-", "samsung", "HTC", 
                    "mot-", "mitsu", "sagem", "sony"
                    , "alcatel", "lg", "eric", "vx", 
                    "NEC", "philips", "mmm", "xx", 
                    "panasonic", "sharp", "wap", "sch",
                    "rover", "pocket", "benq", "java", 
                    "pt", "pg", "vox", "amoi", 
                    "bird", "compal", "kg", "voda",
                    "sany", "kdd", "dbt", "sendo", 
                    "sgh", "gradi", "jb", "dddi", 
                    "moto", "iphone"
                };

        //Loop through each item in the list created above 
        //and check if the header contains that text
        foreach (string s in mobiles)
        {
            if (context.Request.ServerVariables["HTTP_USER_AGENT"].
                                                ToLower().Contains(s.ToLower()))
            {
                return true;
            }
        }
    }

    return false;
}

Points of Interest

As you can see, the above code is written in new syntax. But, it can easily be changed to work on any version of .NET. Instead of using the short hand array initializer, use new string[] {} (instead of new[] {}).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Vincent Van Zyl

Team Leader
Blueworld Communities
South Africa South Africa

Member

I am fairly new to programming as I began programming in asp.net and C# in 2005.
 
But I have learned a lot in a very short space of time thanks to code project and sitepoint. I work in a very fast past company which also helped speed things up

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 Pinmemberfawad22:56 13 Mar '12  
SuggestionNew devices PinmemberBoci9:53 5 Dec '11  
GeneralRe: New devices Pinmemberblagoja0:50 29 Dec '11  
Questionthanks Pinmemberhugorafael9:58 20 Jun '11  
GeneralThanks PinmemberNikhil_Patel1234:01 27 Apr '11  
GeneralImproved version PinmemberHarvo15:08 23 Nov '10  
GeneralRe: Improved version PinmemberDaniel Gidman9:04 5 May '11  
GeneralRe: Improved version PinmemberHarvo10:02 5 May '11  
GeneralRe: Improved version Pinmembersanilpnair4:03 8 Aug '11  
GeneralRe: Improved version PinmemberLe Cong Thanh6:19 16 Sep '11  
GeneralGreat article PinmemberORamses0:42 5 Sep '10  
Generalsome little enhancements Pinmembersmartcatxxx7:02 11 Oct '09  
GeneralDetect Mobile Infomation PinmemberAmimpat1:12 31 Jul '09  
GeneralRe: Detect Mobile Infomation [modified] PinmemberDutchMafia3:44 13 Aug '09  
GeneralRe: Detect Mobile Infomation PinmemberAmaresh Jois18:46 5 Aug '10  
GeneralRe: Detect Mobile Infomation PinmemberAmaresh Jois2:40 27 Aug '10  
GeneralThis code contains false positives! PinmemberEricLaw8:28 14 Jul '09  
GeneralRe: This code contains false positives! PinmemberWendy Youngblood6:58 30 Mar '10  
GeneralBug Pinmemberthezone12322:44 7 Apr '09  
GeneralRe: Bug Pinmembermgbaldwin1:42 13 Jul '09  
Generalthanks, Pinmemberjusjusjus22:26 30 Mar '09  
GeneralThanks Pinmemberthund3rstruck7:09 24 Mar '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 Mar 2009
Article Copyright 2009 by Vincent Van Zyl
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid