use cfdump to show entire session value in Development environment.
view plaincopy to clipboardprint? <cfdump var="#session#"> Session variables are in stored in structure format. So you loop through the collection to show the session variables. view plaincopy to clipboardprint? <cfoutput><cfloop collection=#session# item="key"> #key# : #structFind(session,key)#
cfloop>cfoutput>
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
use cfdump to show entire session value in Development environment.
view plaincopy to clipboardprint?
<cfdump var="#session#">
Session variables are in stored in structure format. So you loop through the collection to show the session variables.
view plaincopy to clipboardprint?
<cfoutput><cfloop collection=#session# item="key">
#key# : #structFind(session,key)#
cfloop>cfoutput>