Type: String
Returns a string that contains detailed information about the service pack of the browser, and any "Q" patches that are installed. For example: "SP2; Q321232;".
Note: Use of this property requires the Enterprise Edition of BrowserHawk.
Special notes for this property:
This property is only set for IE version 4 and higher on Windows platforms.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("ServicePack");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
ServicePack: <% Response.Write(extBrow.ServicePack); %>
</html>
See Also: