Type: Boolean
Returns True if the browser is Internet Explorer 8 or higher running in IE Compatibility View mode, False otherwise.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("IECompatibilityMode");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Is your browser running in IE Compatibility view mode? <% Response.Write(extBrow.IECompatibilityMode); %>
</html>
Special notes for this property:
If the user’s JavaScript is disabled this property will not be available.
See Also: