Click here to Skip to main content
15,886,765 members
Articles / Web Development / ASP.NET
Article

Get Browser Information Using MobileCapabilities

Rate me:
Please Sign up or sign in to vote.
2.56/5 (7 votes)
15 Jul 2003 48.8K   444   24   1
Get browser information using MobileCapabilities.

Sample Image - browsercap.jpg

Introduction

ASP.NET provides an extensible mechanism for identifying a mobile client device, and for making the information available to the ASP.NET page framework and the ASP.NET mobile Web application. Like the HttpBrowserCapabilities class, the MobileCapabilities class provides information about the browser making the request. This article explains how you can display all capabilities using reflection, and how you can use them to customize your application for specific mobile devices.

Background

The MobileCapabilities class extends the HttpBrowserCapabilities class. The MobileCapabilities class offers a large number of read-only properties that provide type-safe access to the Browser object's capabilities dictionary.

You can use the Browser property of the HttpRequest object to point to an instance of a MobileCapabilities object, which can then be used to read the capabilities of the requesting browser and device.

Using the code

You can access a lot of information about the browser if your browser is correctly identified using <browsercap> section in machine.config.

// Define
System.Web.Mobile.MobileCapabilities currentCapabilities;
// Get MobileCapabilities from current Request.Browser
MobileCapabilities currentCapabilities = (MobileCapabilities)Request.Browser;
// get a property of the  browser 
string preferredRenderingMIME=currentCapabilities.PreferredRenderingMIME;

Sample code uses System.Reflection to display all properties of MobileCapabilities class.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Saudi Arabia Saudi Arabia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralASP.NET : Mobile Device Detection And Mobile Capabilities Pin
Amimpat19-Oct-09 20:51
Amimpat19-Oct-09 20:51 

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

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