Click here to Skip to main content
Click here to Skip to main content

ASP.NET Mobile Device Detection with Additional Methods

By , 30 Oct 2011
 

Introduction

In ASP.NET, you can easily detect the mobile device request using Request.Browser.IsMobileDevice  property and Request.UserAgent.But these functionalities don't work all the time, so to get the more appropriate results for the mobile detection and want to get more details about the mobile, the WURFL.dll is more useful.

Background

Some of the popular mobile devices/browsers won’t be detected using this way because ASP.NET browser files are not supported in Opera Mobile or Android devices. That means if you want to classify the desktop page and mobile page, it won't helps you out.

Using the Code

  1. Add the WURFL.dll reference to your project.
  2. Copy the App_Data files to your project App_Data folder.
  3. Copy & Paste the WurflLoader.cs file to your App_Code folder.
  4. Build the project and now you can try the sample page WebForm1.aspx in browser.
	//
	// The sample Method to check weather the device is a mobile and not a tablet.
	//
public static Boolean isMobile()
{
   var device = WurflLoader.GetManager().GetDeviceForRequest(HttpContext.Current.Request);
   if (Convert.ToBoolean(device.GetCapability("is_wireless_device")) && !Convert.ToBoolean(device.GetCapability("is_tablet")))
  {
     return true;
  }
  else
  {
     return false;
  }
}

Points of Interest

If there is a need of mobile browser detection and classification of mobiles needed, then this will be very useful. This is an open standard DLL.

License

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

About the Author

manuscrazy
Software Developer (Senior) Ray Business Technologies Pvt. Ltd.
India India
Member
Senior software engineer (Hyderabad,India)

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
SuggestionDevice detection in multiple languages. [modified]memberJMatthewson18 Sep '12 - 4:10 
SuggestionThis is NOT a one stop solution!!memberD Becker3 Nov '11 - 4:03 
GeneralRe: This is NOT a one stop solution!!membermanuscrazy3 Nov '11 - 20:27 
GeneralRe: This is NOT a one stop solution!!memberD Becker3 Nov '11 - 23:22 
QuestionWURFL is not so open anymorememberDoug D in NH2 Nov '11 - 5:13 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 30 Oct 2011
Article Copyright 2011 by manuscrazy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid