Forum Moderators: open
response.cookies
request.cookies
And all the things about them (naming them, expiring them etc). One thing that would be quite useful for my users is to end their session on my site (which are controlled my the cookies) by deleting them.
How would remove the cookies thus ending their session?
'Beginning of session:
Response.Cookies("name") = strNameVariable
'----------- user has fun in their session...
'End of session:
Response.Cookies("name") = ""
This will clear out the value of the name cookie. So the next time you check the cookie, there will be nothing there, so that means their session will be dead.