Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 HttpBrowserCapabilities 来检查用户浏览器。但是当使用 chrome 进行调试时,我将 objBcp 作为“AppleMAC-Safari”。使用 IE 时,它正确显示为“IE”。
System.Web.HttpBrowserCapabilities objBcp= Request.Browser; if(objBcp.Browser=="Chrome") {}
Chrome还有其他扩展吗?
我建议为此目的使用 UserAgent,例如:
if (Request.UserAgent.Contains("Chrome")) { ... }