Hmm there is a reverse proxy involved together with the "Oracle
authentication product" I was talking about in option 3 of my original
posting which I think is the cookie eater :-). It seems to be a problem if I
don't specify a path for my cookies. If I add this code below it seems to
work. Don't know if there are any way to set this globally or if I have to
set the path everytime I set a cookie?
Dim key
For Each key in Response.Cookies
Response.Cookies(key).Path = "/"
Next
Regards |