Type: String
Returns the DLL build number of the Microsoft JVM, if installed. For example "5,0,17,102".
Note: You must call the GetExtPropertiesEx method before checking the value of this property. This property requires the Enterprise Edition of BrowserHawk.
Tip: See the extproperties.asp example located in your BrowserHawk directory for detailed information and examples on using this property.
Example:
<% set bhObj = Server.CreateObject("cyScape.browserObj")
bhObj.SetExtProperties "MSJVMBuild"
bhObj.GetExtPropertiesEx
%>
<html>MS JVM build:
<% if bhObj.Browser = "IE" and bhObj.Majorver >= 5 and LCase(left(bhObj.Platform,3)) = "win" then
PropVal = bhObj.MSJVMBuild
else
PropVal = "Not available with your browser/platform"
end if
response.write PropVal %>
</html>
Special notes for this property:
This property is only available for IE 5 and later under Windows. In all other cases this property will always return an empty string.
If the user’s JavaScript is disabled this property will not be available.
This property returns the build number of the DLL which is responsible for the JVM. Do not confuse this property with the JavaVersion.
See Also: