I create a keyed cookie like this:
Response.cookies("thisUser"("p_userID" = p_userID
Response.cookies("thisUser"("p_first" = trim(resultSet("FirstName")
Response.cookies("thisUser"("p_password" = p_password
Response.cookies("thisUser"("p_email" = trim(resultSet("Email")
BEFORE the <HTML> tag in my logon.asp.
In my forum.asp, I what to retrieve the cookie values, but I am shocked to see that they are gone. ie:
Dim p_userID, p_email, p_password
p_userID = Request.Cookies("thisUser"("p_userID"
p_email = Request.Cookies("thisUser"("p_email"
p_password = Request.Cookies("thisUser"("p_password"
response.write p_userID & " - " & p_email & " - " & p_password & " - " & Request.QueryString("action"
... just prints the dashes with no values.
I just searched my c: and do not have a Global.asa file.
Is that mandatory?
Thanks in advance, Norm
Response.cookies("thisUser"("p_userID" = p_userID
Response.cookies("thisUser"("p_first" = trim(resultSet("FirstName")
Response.cookies("thisUser"("p_password" = p_password
Response.cookies("thisUser"("p_email" = trim(resultSet("Email")
BEFORE the <HTML> tag in my logon.asp.
In my forum.asp, I what to retrieve the cookie values, but I am shocked to see that they are gone. ie:
Dim p_userID, p_email, p_password
p_userID = Request.Cookies("thisUser"("p_userID"
p_email = Request.Cookies("thisUser"("p_email"
p_password = Request.Cookies("thisUser"("p_password"
response.write p_userID & " - " & p_email & " - " & p_password & " - " & Request.QueryString("action"
... just prints the dashes with no values.
I just searched my c: and do not have a Global.asa file.
Is that mandatory?
Thanks in advance, Norm