RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Bailey, Neal
Yeah I wish that was an option... but it would require changing too many pages. Neal Bailey Internet Marketing Manager -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 1:04 PM To: CF-Talk Subject: Re: CF Cookie & ASP Cookie?

Re: CF Cookie & ASP Cookie?

2005-09-28 Thread Bryan Stevenson
So look on the ASP side for a function to decode the cookie value ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com ~

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Bailey, Neal
ng when save to the cookie. Neal Bailey Internet Marketing Manager -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 12:34 PM To: CF-Talk Subject: Re: CF Cookie & ASP Cookie? Oh yeah...and when you say "look at the coo

Re: CF Cookie & ASP Cookie?

2005-09-28 Thread Bryan Stevenson
Oh yeah...and when you say "look at the cookie value" I assume you have actually opened the cookie file?? Try and see if all the encoding goes away ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 2

Re: CF Cookie & ASP Cookie?

2005-09-28 Thread Bryan Stevenson
c Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original Message - From: "Bailey, Neal" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, September 28, 2005 10:24 AM Subj

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Bailey, Neal
OK guys... I think I have my Cookie kind of figured out now... It seems ASP does not actually store the cookie as complex variables but instead it's more of a comma delimited format using "&" as the delimiter. Anyway now that I figure out that problem I have another... I am storing the values

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Bailey, Neal
ECTED] Sent: Wednesday, September 28, 2005 10:46 AM To: CF-Talk Subject: RE: CF Cookie & ASP Cookie? Neal: ASP supports something it calls a "Cookie Dictionaries." This is, essentially an associative array (or structure) of values all referenced by the same variable name. So, just like

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Mosh Teitelbaum
Neal: ASP supports something it calls a "Cookie Dictionaries." This is, essentially an associative array (or structure) of values all referenced by the same variable name. So, just like with ColdFusion structures you can do something like: myStructure.myKey in ASP, you can do something

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Ian Skinner
A cookie can only store a string. So to store multiple values you need to store some kind of delineated string. myvar=1,yourVar=2,joesVar=3 Using this method you can store as much data is you can fit into the current limit on the size of a cookie. It is up to you to create and parse the sting

RE: CF Cookie & ASP Cookie?

2005-09-28 Thread Bailey, Neal
Thanks Brian, But I am still having problems figuring this out... I would things that if ASP could store complex data types in a Cookie then shouldn't CF be able to also. It seems more like an array of data that I need to store as a cookie. I am not a Cookie Master unless we are talking about "N

Re: CF Cookie & ASP Cookie?

2005-09-27 Thread Bryan Stevenson
Not 100% what the ASP code is doingbut it looks like acookie named RSHold which conatins a structure with keys (agentNumber etc.) AFAIK you can't store complex datatypes in cookies (such as structures).so my interpretation of the ASP cookie code may very well be wrong If I am correct