1

How to determine in ASP.NET C# that a request is coming from personal computer or a mobile device. How is this possible?

Joel Kennedy
  • 1,581
  • 5
  • 19
  • 41

2 Answers2

1

For example, you can analyze property Request.Browser.Platform

Going in deep, you can define your own browser detection rules in App_Browsers for your app.

softilium
  • 176
  • 2
  • 2
1

51Degrees.mobi components for mobile web development. It’s provided as a .NET open source class library that detects mobile devices and browsers, enhancing the information available to .NET programmers

refer more about

http://51degrees.codeplex.com/

answered posts

Mobile Device Detection in asp.net

http://www.codeproject.com/Articles/34422/Detecting-a-mobile-browser-in-ASP-NET

Community
  • 1
  • 1
Ramakrishna.p
  • 1,159
  • 12
  • 31