Hi everybody.
I'm not an expert in webspeed so this thread maybe has been posted before.
I'm experiencing problems with cookies.
I'm setting this cookie
<script language = "SpeedScript">
Procedure output-headers:
set-cookie("Login-Id",get-value('login'),?,?,"/",?,?).
define var id as character no-undo.
define var is_group as character no-undo.
id = get-value('login').
is_group = "no".
find first ad_mstr where ad_addr = id no-lock no-error.
if available ad_mstr and ad_ext2 = "GRP" then is_group = "yes".
set-cookie("Is-Group",is_group,?,?,"/",?,?).
set-cookie("Group-Id",get-value('login'),?,?,"/",?,?).
End procedure.
</script>
And this cookie always gets blocked by the default privacy level of IE6.
I'm setting also cookies in other HTML pages with javascript and the DO NOT get blocked so I don't know what's happening with this cookie.
Also we have the P3P checked so..
Thank you in advance for your help.
R.-
I'm not an expert in webspeed so this thread maybe has been posted before.
I'm experiencing problems with cookies.
I'm setting this cookie
<script language = "SpeedScript">
Procedure output-headers:
set-cookie("Login-Id",get-value('login'),?,?,"/",?,?).
define var id as character no-undo.
define var is_group as character no-undo.
id = get-value('login').
is_group = "no".
find first ad_mstr where ad_addr = id no-lock no-error.
if available ad_mstr and ad_ext2 = "GRP" then is_group = "yes".
set-cookie("Is-Group",is_group,?,?,"/",?,?).
set-cookie("Group-Id",get-value('login'),?,?,"/",?,?).
End procedure.
</script>
And this cookie always gets blocked by the default privacy level of IE6.
I'm setting also cookies in other HTML pages with javascript and the DO NOT get blocked so I don't know what's happening with this cookie.
Also we have the P3P checked so..
Thank you in advance for your help.
R.-