The cflocation tag does generate an http header. The http header that the <cflocation /> tag generates redirects the client to change requested pages.
My guess is that now, instead of just automatically firing off a redirection header at the first sight of a <cflocation />, they first look at the page to see if the page had set a cookie before the <cflocation />. If so, then they generate a set-cookie header, then do the redirection. With this one, they just made the CFMX server smarter--as it should have been in the first place. Jeremy -----Original Message----- From: derek bumpas [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 5:21 PM To: [EMAIL PROTECTED] Subject: RE: RE: Cf cookies How so? Are they sending HTTP Headers regardless now? Derek -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Billy Cravens Sent: Monday, November 18, 2002 5:03 PM To: [EMAIL PROTECTED] Subject: RE: RE: Cf cookies Keep in mind that this limitation doesn't exist in CFMX. ************************** Billy Cravens Web and Software consulting www.Architechx.com -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of [EMAIL PROTECTED] Sent: Monday, November 18, 2002 3:39 PM To: [EMAIL PROTECTED] Subject: Re: RE: Cf cookies Are you doing a CFLOCATION on the page you are setting your cookie? Just a guess, but if so, they are never actually being set. Try using something like: document.location.href='[url]'; rather than CFLOCATION -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Ron Mast Sent: Monday, November 18, 2002 11:54 AM To: [EMAIL PROTECTED] Subject: Cf cookies Hi All, I'm trying to set a cookie...looks like this: <cfcookie name="TCCookie" Value="truth" Expires="never"> I want to do the following but I keep coming up with "TCCookie is not defined!" when I ran the above code: <cfif IsDefined("cookie.TCCookie")> TCCookie is defined! <cfelse> TCCookie is not defined! </cfif> I have an application.cfm in my wwwroot: <cfapplication name="colors" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,20,0)#" setclientcookies="Yes"> Does anyone know what I'm doing wrong? Thanks in advance. Ron Mast Truth Hardware Webmaster (507)444-4748 ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org
