Type: String
Returns a string indicating the language code corresponding to the regional settings for the user, if using IE. Otherwise returns the language code corresponding to the language build of the browser. For example: "en-us" or "en".
Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.
Special notes for this property:
Unlike LangSystem, this property is available with IE v4+, Netscape v4+, and Opera v4+ on all platforms.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("LangUser");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
LangUser: <% Response.Write(extBrow.LangUser); %>
</html>
See Also: