RE: outputting all client vars

2002-11-05 Thread Adrian Lynch
I don't think you can view them like that. Try cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i#br /cfloop /cfoutput See if that works. Ade -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: 05 November 2002

RE: outputting all client vars

2002-11-05 Thread Will Swain
tried that: An error occurred while evaluating the expression: #CLIENT# Error near line 36, column 15 works for session though. Cheers will -Original Message- From: Randell B Adkins [mailto:AdkinsR;GAO.GOV] Sent: 05 November 2002 17:07 To: CF-Talk Subject: Re: outputting all

RE: outputting all client vars

2002-11-05 Thread Everett, Al
What version of CF? -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002 12:14 PM To: CF-Talk Subject: RE: outputting all client vars tried that: An error occurred while evaluating the expression: #CLIENT# Error near line

RE: outputting all client vars

2002-11-05 Thread Will Swain
thats the one Adrian!! How would I dislay the value of the variables too, as that just gives me the variable names? Thanks a bunch will -Original Message- From: Adrian Lynch [mailto:adrian.l;thoughtbubble.net] Sent: 05 November 2002 17:09 To: CF-Talk Subject: RE: outputting all client

RE: outputting all client vars

2002-11-05 Thread Will Swain
CF5 will -Original Message- From: Everett, Al [mailto:AEverett;askallied.com] Sent: 05 November 2002 17:18 To: CF-Talk Subject: RE: outputting all client vars What version of CF? -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002

RE: outputting all client vars

2002-11-05 Thread Randell B Adkins
17:09 To: CF-Talk Subject: RE: outputting all client vars I don't think you can view them like that. Try cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i#br /cfloop /cfoutput See if that works. Ade -Original Message- From

Re: outputting all client vars

2002-11-05 Thread Stephen Moretti
How would I dislay the value of the variables too, as that just gives me the variable names? #i# : #client[i]#br should do it... Must confess I haven't tried it Otherwise ~shudder~ : evaluate(client.i) Regards Stephen

RE: outputting all client vars

2002-11-05 Thread Mark Johnson
cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i# = #client[i]#BR /cfloop /cfoutput -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002 9:23 AM To: CF-Talk Subject: RE: outputting all client

RE: outputting all client vars

2002-11-05 Thread Adrian Lynch
: outputting all client vars thats the one Adrian!! How would I dislay the value of the variables too, as that just gives me the variable names? Thanks a bunch will -Original Message- From: Adrian Lynch [mailto:adrian.l;thoughtbubble.net] Sent: 05 November 2002 17:09 To: CF-Talk Subject: RE

RE: outputting all client vars

2002-11-05 Thread Robert Polickoski
: Tuesday, November 05, 2002 9:23 AM To: CF-Talk Subject: RE: outputting all client vars thats the one Adrian!! How would I dislay the value of the variables too, as that just gives me the variable names? Thanks a bunch will -Original Message- From: Adrian Lynch [mailto:adrian.l

RE: outputting all client vars

2002-11-05 Thread Will Swain
that works randell. Thanks guys will -Original Message- From: Randell B Adkins [mailto:AdkinsR;GAO.GOV] Sent: 05 November 2002 17:31 To: CF-Talk Subject: RE: outputting all client vars #Evaluate(i)# [EMAIL PROTECTED] 11/05/02 12:22PM thats the one Adrian!! How would I dislay