Re: Session Variable behaving oddly

2009-03-06 Thread James Holmes
Ah, the lolcats naming convention. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/3/6 b...@bradwood.com: You should see the AS400 DB2 tables I have to work with that have 10 character limits for table and column names. You'd think someone ran away

Session Variable behaving oddly

2009-03-05 Thread Fawzi Amadu
I am using session variable to process user supplied information. The problem is when I submit the user form, the session variable is processed alright. But when I use the same session variable on another page, I get the wrong information. My session variable is defined as follows: cfset

Re: Session Variable behaving oddly

2009-03-05 Thread Jason Fisher
You need: cfset SESSION.consumerProduct.Cnsmr_ProductID = Form.Cnsmr_ProductID (without the double quotes ) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Session Variable behaving oddly

2009-03-05 Thread Peter Boughton
As an aside, your naming convention is screwed up... SESSION.consumerProduct.Cnsmr_ProductID WTF is up with the Cnsmr_ProductId? Someone has run away with half your vowels? And why are you repeating yourself anyway!? Just go with: Session.ConsumerProduct.Id Far more readable, zero ambiguity,

Re: Session Variable behaving oddly

2009-03-05 Thread Dave Watts
WTF is up with the Cnsmr_ProductId? Someone has run away with half your vowels? Maybe he posted his code on Boing Boing: http://en.wikipedia.org/wiki/Disemvoweling Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized

RE: Session Variable behaving oddly

2009-03-05 Thread brad
You should see the AS400 DB2 tables I have to work with that have 10 character limits for table and column names. You'd think someone ran away with our vowels AND half our consonants too! ~Brad Original Message Subject: Re: Session Variable behaving oddly From: Dave Watts