MSXML Property

 

Type: Integer

 

Returns the version number of the Microsoft XML Parser installed under IE browsers, 0 if not installed, or -1 if not detectable with the current browser.

 

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 "MSXML"

bhObj.GetExtPropertiesEx

%>

<html>MSXML version is:

<%

if bhObj.Browser = "IE" and LCase(left(bhObj.Platform,3)) = "win" then

PropVal = bhObj.MSXML

else

PropVal = "Not available with your browser/platform"

end if

response.write PropVal %>

</html>

 

Special notes for this property:

 

See Also:

XML Property

XMLHttpRequest Property

GetExtPropertiesEx Method

SetExtProperties Method