Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Situation:
I know how to set a cookie like this:
<cfcookie name="firstName" expires="never" value="#url.firstName#">

The Question:
Using coldfusion, how can I RETRIEVE the value of this cookie later? Saw many resources online about setting but nothing useful about retrieving.

share|improve this question

1 Answer

up vote 6 down vote accepted

You would use the cookie scope like this:

<cfoutput>#cookie.firstName#</cfoutput>

More information on scopes is at http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Variables_30.html

share|improve this answer
This helped. Thank you @Shaji – Eric May 7 '12 at 20:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.