VB获取浏览器版本

String userAgent;
userAgent = Request.UserAgent;
if (userAgent.IndexOf("MSIE 6.0") > -1) 
{
   // The browser is Microsoft Internet Explorer Version 6.0.
}
原文地址:https://www.cnblogs.com/liuwj/p/3437982.html