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.AOL

Indicates whether the client is an America On-Line (AOL) branded browser.

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

Property Value

true if the browser client is an AOL browser; otherwise, false. Default value is false.

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client browser is 
' an AOL browser.
If Request.Browser.AOL = True Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace