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)
The following code example assigns the type identification of the requesting browser to a string variable.
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: