This documentation is archived and is not being maintained.
HttpRequest.UserAgent Property
.NET Framework (current version)
Gets the raw user agent string of the client browser.
Namespace:
System.WebAssembly:
System.Web (in System.Web.dll)
Public ReadOnly Property UserAgent As String
Property Value
Type:
System.StringThe raw user agent string of the client browser.
The following code example assigns the type identification of the requesting browser to a string variable.
Dim userAgent As String
userAgent= Request.UserAgent
If userAgent.IndexOf("MSIE 6.0") > -1 Then
' The browser is Microsoft Internet Explorer 6.0.
End If
.NET Framework
Available since 1.1
Return to top