How I can check the browser version in C#? For example: (Version 54.0.2840.71 m)
for google chrome.
Asked
Active
Viewed 780 times
-2

Vivek Nuna
- 25,472
- 25
- 109
- 197

Murtada Altaee
- 49
- 1
- 2
- 9
-
1what you mean Browser Version? Browsers that installed on computer or browser that browses your webpage? – Badiparmagi Nov 14 '16 at 06:01
-
asp.net application? – Sajeetharan Nov 14 '16 at 06:01
-
Please don't. Learn from the past's mistakes. Try to use feature detection rather than "knowing" what a particular browser is/isn't capable of. – Damien_The_Unbeliever Nov 14 '16 at 07:02
1 Answers
1
Try Request.Browser or Request.UserAgent
You can get it by using Request.Browser
Request.Browser
gives browser information with extra information regarding the browser capabilities.
User Agent gives browser information, But it gives you a raw string about the browser.

Vivek Nuna
- 25,472
- 25
- 109
- 197