Type: String
Returns the build number of the currently installed VBScript engine. For example: "5.5.5207".
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 "VBScriptBuild"
bhObj.GetExtPropertiesEx
%>
<html>VBScript build is:
<%
if bhObj.Browser = "IE" and bhObj.majorver >=5 and LCase(left(bhObj.Platform,3)) = "win" then
vb = bhObj.VBScriptBuild
if vb = "" then
PropVal = "Not detectable"
else
PropVal = vb
end if
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 on Windows 32 and 64-bit platforms.
If the user’s JavaScript is disabled this property will not be available.
See Also: