@Request.Cookies["YourCookie"].Expires.ToString()
However, I do not think that there is a property to get the creation date, unless you have to specifically store this value as an additional value inside the cookie itself:
which can be accessed on the page:
Created : @Request.Cookies["Example"].Values["Created"].ToString() Expires : @Request.Cookies["Example"].Expires.ToString()
source share