i am logging errors on my asp.net-mvc site and i wanted to see if there is anyway to detect the users browser info (name, version, etc) as it seems like people are getting issue but its because they are using very old browser. This info would help me avoid debugging time if i know they are using a "Not supported" browser.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You may try the Request.Browser property. It will contain pretty much everything you might need about the client browser (assuming it is sending the UserAgent header properly of course). |
|||
|
|
|
You can get the supplied User Agent which gives browser information:
There is a site which lists browser user agent strings: http://www.useragentstring.com Other values you may be interested in.
|
|||
|
|