[Overview][Constants][Procedures and functions] | Reference for unit 'pwumain' (#powtils_main) |
Source position: pwumain.pas line 89
function UnsetCookie( |
const name: String |
):Boolean; |
The function returns TRUE on success, FALSE on error.
begin UnsetCookie('foo'); webwrite('Does the cookie still exist: '); s := GetCookie('foo'); if s = '' then webwrite('no') else webwrite('yes'); end.