don't seem to be able to set the expiration date of a cookie within cfscript. any hints? it's coldfusion 9 btw.
|
feedback
|
|
The | |||
|
feedback
|
|
I wrote this UDF. Notice that it httpOnly is CF9 only so you would want to remove it under CF8.
| |||
|
feedback
|
|
CF9.0.1 doesn't have a CFCookie cfscript equivalent, but if you want to use CFFUNCTION, you can still do it in addition to adding HTTPOnly support for CF6, 7, 8 & 9. You'll be able to create a UDF, but it just won't be in CFSCRIPT format (no big loss.) There's a good writeup regarding how to do it here (with source code): http://www.modernsignal.com/coldfusionhttponlycookie (I don't know why this isn't available at CFLib.org yet.) One issue that I initially encountered creating cookies using CFHEADER was that it allowed mixed-case names and ColdFusion is only capable of reading, updating & deleting cookies with uppercase names. To test/review cookies in Firefox and verify the expiration date (or HTTPOnly setting), install the FireCookie Firebug extension: http://www.softwareishard.com/blog/firecookie/ | |||
|
feedback
|