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 websi
you can do it by getting the UserAgent
string ua = Request.UserAgent; if (ua != null && (ua.Contains("iPhone") || ua.Contains("iPad"))) { ... ... ... }