|
|
|
|
CookieDelete (Function) In french: CookieSupprime Deletes a cookie on the user's computer.
// Delete a cookie in server code // The server no longer needs to retrieve the name and date of last visit of the client. CookieDelete("NAME_AND_DATE")
Syntax
CookieDelete(<Cookie> [, <Path>])
<Cookie>: Character string Name of the cookie to be deleted. This name was specified with CookieWrite. <Path>: Optional character string Cookie path on the server. This path was specified with CookieWrite. This parameter is case-sensitive. By default (or if this parameter corresponds to an empty string), the path corresponds to "/". Example: "/COOKIES_WEB/FR/LOGIN" Business / UI classification: UI Code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|