Function CSPSetCookie::operator =()
Description:
Sets the value of the outgoing cookie.
 |
Prototype:
void operator =(const CSPString& strValue);
Arguments:
- const CSPString& strValue [IN]
The value of the cookie.
Return value:
No return value (void).
Examples:
Response.Cookies( "mycookie" ) = "butter cookie";
|
|