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);
很好啊,感谢
能用