Much cleaner code that I found I was using :

<CFLOOP COLLECTION="#Form#" ITEM="ThisField">
      #ThisField# = #Form[ThisField]#<Br>
 </CFLOOP>
 <CFLOOP COLLECTION="#URL#" ITEM="ThisField">
      #ThisField# = #URL[ThisField]#<Br>
 </CFLOOP>
 <CFLOOP COLLECTION="#SESSION#" ITEM="ThisField">
      #ThisField# = #SESSION[ThisField]#<Br>
 </CFLOOP>

Neil

----- Original Message -----
From: "Matt Ledgerwood" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 13, 2000 11:42 PM
Subject: RE: Session Collection


> bugger, hit the wrong keys....
>
> here is the code
>
> <cfapplication name = "alice" clientmanagement = "yes"
> sessionmanagement = "yes">
>
>
> <h2>Application Variables:</h2>
> <cfoutput>
>   <cfloop collection = "#application#" item = "variable">
>   #variable# = #StructFind(application, "#variable#")#
>  </cfloop>
> </cfoutput>
>
> <h2>Session Variables:</h2>
> <cfoutput>
>   <cfloop collection = "#session#" item = "variable">
>   #variable# = #StructFind(session, "#variable#")# <br>
>   </cfloop>
> </cfoutput>
>
> Matt Ledgerwood
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to