Type: String
Returns a string containing the build number of the browser. For example: "11,0,9600,16428".
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 "BrowserBuild"
bhObj.GetExtPropertiesEx
%>
<html>Browser build is:
<%
if bhObj.Browser = "IE" and bhObj.majorver >=5 and LCase(left(bhObj.Platform,3)) = "win" then
PropVal = bhObj.BrowserBuild
else
PropVal = "Not applicable to your browser/platform"
end if
response.write PropVal %>
</html>
Special notes for this property:
If the user’s JavaScript is disabled this property will not be available.
This property is not available with Internet Explorer 11+, except when running in IE Compatibility View mode.
See Also: