How to identify IE Build and Sub Build Numbers browsers?

http://msdn.microsoft.com/en-us/library/3yekbd5b.aspx

Using this link, we can not find the version of the assembly and assembly!

For more information on assembly and assembly and how this version is created, follow this link: http://support.microsoft.com/kb/969393

Can anyone help me with this?

I want to know browsers major version.minor version.build number.subbuild number

ie, 6.00.2800.1106

The above can also be achieved using WMI and VBScripting! as well as through the C # registry and management objects, but I believe that this is not an accurate way to identify! Is there a way to identify these versions of an assembly and an assembly?

0
javascript
source share
3 answers

You can discover their user agent and extract the necessary data from it. Their user agent is stored in: navigator.userAgent

An example user agent is as follows:

Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7 

From this line you can say that I am running windows 6.1 (win 7), and my browser is chrome 16.0.912.77.

0
source share

Below javascript can specify the browser name and version of the application:

 var txt = "Browser Name: " + navigator.appCodeName; txt+= " and Browser Version: " + navigator.appVersion; alert(txt); // alerts the browser name and version 
0
source share

If JavaScript is available, you can use the jQuery Browser . If I remember correctly, the implementation is marked as deprecated, but I used it in the past for the project and had no problems with it. The demopage displays the values ​​containing the tuning numbers.

Part of the javascript file I used:

  if ($.browser.msie && $.browser.version == '7.0') { // do something } 
0
source share

All Articles