> EXPIRES="Never" produces exactly the behavior you described. 
> THe cookie persists only as long as the browser is open.

That's incorrect. To get a cookie that persists only until the browser is
closed - a "session" cookie - you must omit the EXPIRES parameter entirely.
EXPIRES="NEVER" sets a cookie to have an expiration date far in the future,
and returns an HTTP response header like this:

Set-Cookie: CTESTNEVER=1; expires=Sun, 27-Sep-2037

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to