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

Browser string in User Agent (for example: "IE").

[Visual Basic]
Overridable Public ReadOnly Property Browser As String
[C#]
public string Browser {virtual get;}
[C++]
public: __property virtual String* get_Browser();
[JScript]
public function get Browser() : String;

Example [Visual Basic]

[Visual Basic]

<%
' This example takes some action only if the client browser
' is any version of Microsoft Internet Explorer.
If InStr(Ucase(Request.Browser.Browser), "IE") > 0 Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace