ASP.NET how to check if client is Mac -
It seems that there are several ways to do this: I You can use HttpContext.Current.Request.UserAgent The request has been found to use. ServerVariables ("HTTP_USER_AGENT") ,
Request.Browser.Platform . Not sure which one is the right way to detect the OS version. Also, how do I get a list of the OS version string that the client browser can send to the web server with that string, so I can filter it in code.
Comments
Post a Comment