Type: Integer
Returns an integer indicating whether the visitor’s browser has the Windows Media Player installed. The returned value will be one of the following:
0: The plug-in is not installed
1: The plug-in is installed
-1: It is not possible to detect if the plug-in is installed
Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.
Special notes for this property:
Not all browsers are capable of having their plug-ins detected. If this is the case the return value will be -1.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Plugin_MediaPlayer");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Plugin_MediaPlayer: <% Response.Write(extBrow.Plugin_MediaPlayer); %>
</html>
See Also: