NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpBrowserCapabilities.JavaApplets

Indicates whether the client browser supports Java Applets.

[Visual Basic]
Overridable Public ReadOnly Property JavaApplets As Boolean
[C#]
public bool JavaApplets {virtual get;}
[C++]
public: __property virtual bool get_JavaApplets();
[JScript]
public function get JavaApplets() : Boolean;

Property Value

true if the browser client supports Java Applets; otherwise, false. Default value is false.

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client browser
' supports Java applets.
If Request.Browser.JavaApplets = True Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace