特色栏目

ASP源码

PHP源码

.NET源码

JSP源码

游戏频道
专题合集
关闭菜单
首页> ASP.NET教程> 在ASP.NET页中检测浏览器类型

在ASP.NET页中检测浏览器类型

时间:2009-07-01 16:26:43 作者:互联网

本文引自VS帮助文档
查询 Browser 属性,
该属性包含一个 HttpBrowserCapabilities 对象。
在 HTTP 请求过程中,该对象会从浏览器或客户端设备中获取信息,
以便让您的应用程序知道浏览器或客户端设备提供的支持类型和级别。
该对象随后使用强类型属性和泛型名称值字典公开有关浏览器功能的信息。

下面的代码示例演示如何在页上的文本框中显示浏览器信息。
=======
Visual Basic
=======
Private Sub Button1_Click(ByVal sender As Sy***m.Object, _
       ByVal e As Sy***m.EventArgs) Handles Bu***n1.Click
    Dim s As String = ""
    With Re***st.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 = " & _
            .E***ScriptVersion.ToString() & vbCrLf
        s &= "Supports Java Applets = " & .JavaApplets & vbCrLf
        s &= "Supports ActiveX Controls = " & .ActiveXControls & _
            vbCrLf
    End With
    Te***ox1.Text = s
End Sub

=====
C#
=====
private void Button1_Click(object sender, Sy***m.EventArgs e)
{
    Sy***m.Web.HttpBrowserCapabilities browser = Re***st.Browser;
    string s = "Browser Capabilities
"
        + "Type = "                    + br***er.Type + "
"
        + "Name = "                    + br***er.Browser + "
"
        + "Version = "                 + br***er.Version + "
"
        + "Major Version = "           + br***er.MajorVersion + "
"
        + "Minor Version = "           + br***er.MinorVersion + "
"
        + "Platform = "                + br***er.Platform + "
"
        + "Is Beta = "                 + br***er.Beta + "
"
        + "Is Crawler = "              + br***er.Crawler + "
"
        + "Is AOL = "                  + br***er.AOL + "
"
        + "Is Win16 = "                + br***er.Win16 + "
"
        + "Is Win32 = "                + br***er.Win32 + "
"
        + "Supports Frames = "         + br***er.Frames + "
"
        + "Supports Tables = "         + br***er.Tables + "
"
        + "Supports Cookies = "        + br***er.Cookies + "
"
        + "Supports VBScript = "       + br***er.VBScript + "
"
        + "Supports JavaScript = "     +
            browser.E***ScriptVersion.ToString() + "
"
        + "Supports Java Applets = "   + br***er.JavaApplets + "
"
        + "Supports ActiveX Controls = " + br***er.ActiveXControls
              + "
";
    Re***nse.Write(s);
}

相关文章 最新文章

相关应用

热门文章

猜你喜欢

返回顶部