I am validating users outside snitz by creating cookies. In someway my cookies are not created correctly from times to times..
Sometimes it works and sometimes it dont. (I have no clue what makes the cookie creating work on some machines and not on some..) All machines have (accept cookie)..
this is the code that creates the cookie: -------------------------------------------- Dim snitzUser snitz00User = "Snitz00User" Response.Cookies(snitzUser).Path = "/" Response.Cookies(snitzUser)("Name") = FrmLogin Response.Cookies(snitzUser)("Pword") = sha256("" & FrmPassword) Response.Cookies(snitzUser).Expires = dateAdd("d", 30, Now()) --------------------------------------------
I am very grateful for any suggestions that could lead me in the right direction..