I'm using a C# asp.net website.
How can I check if the user using ipad or iphone? How can I check the platform?
For example, if the user enter the website from ipad I'd like to display"Hello ipad user"
|
|
For iPad user agent is something like:
and for iPhone its somthing like:
Any many more depending on the version and wheather its iPhone 3 or 4 so better just do a substring search for iPhone and iPad as suggested by another answer |
||||
|
|
|
UPDATE:
Since the iPad user agent contains the word
and iPhone user agent is something like this:
it would be correct to check for the word
|
|||||||||||||||||||
|
|
The user-agent for these devices includes "iPod", "iPad" or "IPhone" as appropriate. Note that there are several user agents in play, so an exact match is unwise - but have a look from your device at http://whatsmyuseragent.com So check the user-agent in the headers. |
|||
|
|
|
you can do it by getting the UserAgent
|
|||
|
|
|
I would try WURFL first http://wurfl.sourceforge.net/ They have .NET API and Very good code samples. http://wurfl.sourceforge.net/dotnet_index.php The class that will help you is called WURFLManager and has the following methods:
Use WURFL http://wurfl.sourceforge.net/dotnet_index.php If you using asp.net mvc you can use an ActionFilter
There is also 51Degrees.Mobi Steve Sanderson has covered how to do this on his blog http://blog.stevensanderson.com/2010/12/17/using-51degreesmobi-foundation-for-accurate-mobile-browser-detection-on-aspnet-mvc-3/ 51Degrees.Mobi Foundation is an open source .NET project that enhances Request.Browser so it gets its information from Wireless Universal Resource File (WURFL) – one of the most comprehensive and up-to-date databases of mobile device information. The great news is that 51Degrees.Mobi Foundation is now available as a NuGet package, so it’s incredibly easy to install and update. |
||||
|
|