本文引自VS帮助文档
查询 Browser 属性,
该属性包含一个 HttpBrowserCapabilities 对象。
在 HTTP 请求过程中,该对象会从浏览器或客户端设备中获取信息,
以便让您的应用程序知道浏览器或客户端设备提供的支持类型和级别。
该对象随后使用强类型属性和泛型名称值字典公开有关浏览器功能的信息。
下面的代码示例演示如何在页上的文本框中显示浏览器信息。
=======
Visual Basic 
=======
Private Sub Button1_Click(ByVal sender As System.Object, _
 ByVal e As System.EventArgs) Handles Button1.Click
 Dim s As String = ""
 With Request.Browser
 s &= "Browser Capabilities" & vbCrLf
 s &= "Type = " & .Type & vbCrLf
 s &= "Name = " & .Browser & vbCrLf
 s &= "Version = " & .Version & vbCrLf
 s &= "Major Version = " & .MajorVersion & vbCrLf
 s &= "Minor Version = " & .MinorVersion & vbCrLf
 s &= "Platform = " & .Platform & vbCrLf
 s &= "Is Beta = " & .Beta & vbCrLf
 s &= "Is Crawler = " & .Crawler & vbCrLf
 s &= "Is AOL = " & .AOL & vbCrLf
 s &= "Is Win16 = " & .Win16 & vbCrLf
 s &= "Is Win32 = " & .Win32 & vbCrLf
 s &= "Supports Frames = " & .Frames & vbCrLf
 s &= "Supports Tables = " & .Tables & vbCrLf
 s &= "Supports Cookies = " & .Cookies & vbCrLf
 s &= "Supports VBScript = " & .VBScript & vbCrLf
 s &= "Supports javascript = " & _
 .EcmaScriptVersion.ToString() & vbCrLf
 s &= "Supports Java Applets = " & .JavaApplets & vbCrLf
 s &= "Supports ActiveX Controls = " & .ActiveXControls & _
 vbCrLf
 End With
 TextBox1.Text = s
End Sub
=====
C#
=====
private void Button1_Click(object sender, System.EventArgs e)
{
 System.Web.HttpBrowserCapabilities browser = Request.Browser;
 string s = "Browser Capabilities
"
 + "Type = " + browser.Type + "
"
 + "Name = " + browser.Browser + "
"
 + "Version = " + browser.Version + "
"
 + "Major Version = " + browser.MajorVersion + "
"
 + "Minor Version = " + browser.MinorVersion + "
"
 + "Platform = " + browser.Platform + "
"
 + "Is Beta = " + browser.Beta + "
"
 + "Is Crawler = " + browser.Crawler + "
"
 + "Is AOL = " + browser.AOL + "
"
 + "Is Win16 = " + browser.Win16 + "
"
 + "Is Win32 = " + browser.Win32 + "
"
 + "Supports Frames = " + browser.Frames + "
"
 + "Supports Tables = " + browser.Tables + "
"
 + "Supports Cookies = " + browser.Cookies + "
"
 + "Supports VBScript = " + browser.VBScript + "
"
 + "Supports javascript = " + 
 browser.EcmaScriptVersion.ToString() + "
"
 + "Supports Java Applets = " + browser.JavaApplets + "
"
 + "Supports ActiveX Controls = " + browser.ActiveXControls 
 + "
";
 Response.Write(s);
}
赞
If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
 
 
QQ:154298438
QQ:417480759