string name = Request.Browser.Browser;
string type = Request.Browser.Type;
string version = Request.Browser.Version;
string os = Request.Browser.Platform;
string isSupportFramework = Request.Browser.Frames.ToString();
string isSupportTable = Request.Browser.Tables.ToString();
string isSupportCookie = Request.Browser.Cookies.ToString();
string strInfo = name + "<br/>" + type + "<br/>" + version+"<br/>"+os+"<br/>"+isSupportFramework;
Response.Write(strInfo);
版权属于:
Laughing
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
很好啊,感谢
能用