Type: Boolean
Returns True if the browser has VBScript enabled and working properly, or False if VBScript is disabled or not installed properly.
Note: Use of this property requires the Enterprise Edition of BrowserHawk.
Special notes for this property:
This property is only available with IE under the Windows 32 and 64-bit platforms. For all other browsers and platforms this property will always return False.
If the user’s JavaScript is disabled this property will not be available.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("VBScriptEnabled");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
VBScriptEnabled: <% Response.Write(extBrow.VBScriptEnabled); %>
</html>
See Also:
JavaScriptBuild Property (.NET)
GetExtPropertiesEx Metho (.NET)d