
Cookies - how to determine expiration DATE??
Request.Cookies("PersonID") will get you the VALUE stored in that
cookie.
How do I Request the DATE when that same cookies expires? Can that be
found??
It is easy enough to WRITE the date that a cookie expires, such as...
Response.Cookies("PersonID").Expires now + 30
...but what I am trying to find is how to then READ that DATE value.
Thanx!
(ps. looking at the cookie file itself does not help -- not me,
anyway! -- just a bunch of random looking numbers)