Re: [Session Variables - I don't get it]

2001-05-14 Thread Alex
because you are setting it to black on the application.cfm page. change the application.cfm cfset to cfparam Kronenberger, Douglas [EMAIL PROTECTED] wrote: Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue

Re: [Session Variables - I don't get it]

2001-05-14 Thread Bill King
It appears that you are spitting out the variable before you change it to blue. - Bill - - Original Message - From: Alex [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 11, 2001 7:47 AM Subject: Re: [Session Variables - I don't get it] because you are setting

Session Variables - I don't get it

2001-05-11 Thread Kronenberger, Douglas
Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue and have it show up as Blue on the test.cfm. It keep show'n up black. I do have Session Variables enabled via the CF Administrator page. What am I miss'n

RE: Session Variables - I don't get it

2001-05-11 Thread Kola Oyedeji
Have you got cookies switched on? incidentaly you dont need ## signs inside cfset. KOla -Original Message- From: Kronenberger, Douglas [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 14:50 To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how

RE: Session Variables - I don't get it

2001-05-11 Thread Per Kleven
cfoutput#session.dog#/cfoutput in the test.cfm file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kronenberger, Douglas Sent: 11. mai 2001 15:50 To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how to implement

RE: Session Variables - I don't get it

2001-05-11 Thread Boardwine, David L.
PROTECTED]] Sent: Friday, May 11, 2001 9:50 AM To: CF-Talk Subject: Session Variables - I don't get it Greetings, I'm not getting how to implement session variables. I'm just trying to set the session variable Session.Dog from black to Blue and have it show up as Blue on the test.cfm. It keep show'n up

RE: Session Variables - I don't get it

2001-05-11 Thread douglas . kronenberger
: Friday, May 11, 2001 7:15 AM To: CF-Talk Subject: RE: Session Variables - I don't get it Hi You're setting the session.dog variable to Black EACH time in your application file, and in your test.cfm file to Blue AFTER it's outputted. So when you output it, it's set to black. use cfparam name