All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
PHP技巧:使用PHP制作动态网页过程中的五个技巧_[PHP教程]
php实现下载功能_php资料_编程技术
精妙的SQL语句_[SQL,Server教程]
在ASP.NET中利用VWD操作数据库简介_[Asp.Net教程]
SQL循序渐进(14)组合条件和布尔运算符_[SQL,Server教程]
asp.net2.0服务器控件SiteMapPath的功能
ASP.NET组件DataGrid的分页实用方法_.net资料_编程技术
.net,2.0(c#)下简单的FTP应用程序_[Asp.Net教程]
Visual,Studio,2008,RTM,已经对内发布_[Asp.Net教程]
PHP中使用XML-RPC构造Web,Service简单入门_php资料_编程技术
Reading number is top 10 pictures
狗狗与主人神同步2
两个妞在等世界上最短的火车
Born After 90 Beijing sports university campus flower photos3
YangYuYing and ZhengShaoQiu dance on the generous come interest dye-in-the-wood
世界五大海盗
Ashlynn Brooke photograph of a group3
Sora aoi possession photo1
这才是真正的人体艺术4
The real super beauty12
Take you to walk into the most true north Korea rural1
Download software ranking
打鸟视频
Unix video tutorial5
I'm come from Beijing1
Boxer's Top ten classic battle7
Unix video tutorial2
SQL2000 For 4IN1
DreamWeaver8
Take off clothes to survival
Tram sex maniac 2 (H) rar bag11
Boxer Classic video1
aaa published in(发表于) 2013/12/15 8:53:40 Edit(编辑)
技巧:在ASP.NET页中检测浏览器类型_.net资料_编程技术

技巧:在ASP.NET页中检测浏览器类型_.net资料_编程技术

技巧:在ASP.NET页中检测浏览器类型_.net资料_编程技术-你的首页-uuhomepage.com

本文引自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);
}





添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.