|
|
|
|
|
HTTPCookieReset (Function) In french: HTTPCookieRAZ Deletes all the cookies (globally or for a domain) stored: Note Cookies read and sent by the HTTPRequest function are only stored in the application's memory. They are not related to the cookies of Web browsers installed on the computer.
HTTPCookieReset(".google.com")
HTTPRequest("www.google.com")
Syntax
Clears the cookies stored by HTTPRequest Hide the details
HTTPCookieReset([<Domain>])
<Domain>: Optional character string Domain for which the cookies will be cleared. If this parameter is not specified (if no domain is specified), all the cookies will be cleared. Remarks - A domain corresponds to the end of address of HTTP server (".windev.com" for example).
- Using HTTPCookieReset will affect the next call to HTTPRequest or to HTTPSend.
- Using HTTPCookieReset is equivalent to the call to HTTPCookieReplace with an empty array.
- Attention The function HTTPCookieReset function does not clear Internet Explorer cookies.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|