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>
Join MindStick Community
You need to log in or register to vote on answers or questions.
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>