gpt4 book ai didi

c# - 浏览器检测

转载 作者:IT王子 更新时间:2023-10-29 03:53:03 27 4
gpt4 key购买 nike

我需要将 IE 和 FF 浏览器与其他浏览器分开

这是一个伪代码:

If (CurrentBrowser == IE(6+) or FF(2+) )
{
...
}
else
{
...
}

protected void Page_Load() 事件中(这么认为)

if ((Request.Browser.Type == "IE") || (Request.Browser.Type == "FF"))
{
WebMsgBox.Show("1111");
}

无影响:-/什么是 IE 和 FF 类型?

最佳答案

if (Request.Browser.Type.Contains("Firefox")) // replace with your check
{
...
}
else if (Request.Browser.Type.ToUpper().Contains("IE")) // replace with your check
{
if (Request.Browser.MajorVersion < 7)
{
DoSomething();
}
...
}
else { }

关于c# - 浏览器检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2221722/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com