Variable CSPSetCookie::Expires
Description:
The date and time that the cookie expires.
 |
Prototype
CSPDateTime Expires;
Remarks:
If no date and time is set, the cookie is temporary, which means that the cookie is discarded when the client closes the browser.
Examples:
Response.Cookies( "mycookie" ).Expires.SetDate( 1,1,2010 );
|
|