我在firefox中遇到if语句问题。正如您在下面的代码中所看到的,我正在检查cookie是否存在以及它是否存在,它会为Google分析写出一些JS,如果它不存在,它会写一个带有cookiewarning。
它在除Firefox之外的所有浏览器中都有效。有谁知道它为什么不在Firefox中工作?
if (Request.Cookies["CookieConfirm"] != null)
{
litHead.Text = puts out my js for google analytics
}
else
{
litCookieAlert.Text += puts out the divbox and some links
}