我如何找到用户使用的浏览器版本并要求他进行升级
最佳答案
您可以从HTTP_USER_AGENT
中读取Request.ServerVariables
。
在ASP.NET中将是:
Response.Write(HttpContext.Current.Request.ServerVariables["HTTP_USER_AGENT"]);
More info here
关于c# - 检查浏览器版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2997576/