HttpRequest.UserAgent Property
.NET Framework 3.0
Gets the raw user agent string of the client browser.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property UserAgent As String 'Usage Dim instance As HttpRequest Dim value As String value = instance.UserAgent
/** @property */ public String get_UserAgent ()
public function get UserAgent () : String
Not applicable.
Property Value
The 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
String userAgent;
userAgent = get_Request().get_UserAgent();
if (userAgent.IndexOf("MSIE 6.0") > -1) {
// The browser is Microsoft Internet Explorer Version 6.0.
}
var userAgent : String = Request.UserAgent if(userAgent.IndexOf("MSIE 6.0") > -1) { // The browser is Microsoft Internet Explorer 6.0. }
Community Additions
ADD
Show: