I want to detect browser types in an ASP.NET page and i am using the below code. It gives inconsistent browser names for chrome. How to fix this issue?
string Browser = string.Empty;
HttpBrowserCapabilities BrowserObj = Request.Browser;
Browser = BrowserObj.Type
Output
Google Chrome32, Chrome32
Thanks for your help in advance.
Go to the complete details ...