Variable CSPSetCookie::Secure
Description:
Defines whether the cookie is a secure one or not. If set to true, the cookie is secure. If set to false, the cookie is not secure.
 |
Prototype
bool Secure;
Remarks:
The default value is false.
Examples:
Response.Cookies( "mysecurecookie" ).Secure = true;
|
|