[cfaussie] Re: Flex RDS eclipse plugin

2007-04-30 Thread Andrew Scott
Steve, Not 100% sure, I think it will only work with CFMX7.0+ but that doesn't mean that there isn't a hotfix for CFMX6.0+. But there was an article that said it needed CFMX7.0+ due to some changes in the way RDS works on the server for flex 2. Andrew Scott Senior Coldfusion Developer Aegeon

[cfaussie] Force expiry of a page

2007-04-30 Thread Stephen M
We want to force the expiry of a page, ie purge from the browser cache immediately. I have Alagad catcha on this page and I don't want users to see they same captcha if they hit the back button. The help files suggest this. cfheader name=Expires value=#GetHttpTimeString(Now())# But it just

[cfaussie] Re: Force expiry of a page

2007-04-30 Thread Barry Beattie
this technique always worked for me: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:50692 (linked provided 'cos H.O.F was easier than trawling thru cfaussie archivews) but I have to ask... you're not storing the captcha in a session variable, are you? cheers b On 5/1/07,

[cfaussie] Re: Force expiry of a page

2007-04-30 Thread Stephen M
On May 1, 11:20 am, Barry Beattie [EMAIL PROTECTED] wrote: this technique always worked for me: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:50692 (linked provided 'cos H.O.F was easier than trawling thru cfaussie archivews) but I have to ask... you're not storing the

[cfaussie] Re: Force expiry of a page

2007-04-30 Thread KNOTT, Brian
I just put !--- clear the cache --- cfheader name=Pragma value=no-cache cfheader name=Expires value=01 Apr 1995 01:10:10 GMT cfheader name=cache-control value=no-cache, no-store, must-revalidate In the application file. Works for me. Brian Knott -Original Message- From:

[cfaussie] Re: Force expiry of a page

2007-04-30 Thread Stephen M
I've tried cfheader name=cache-control value=no-cache, no-store, must- revalidate/ cfheader name=cache-control value=post-check=0, pre-check=0 / cfheader name=expires value=01 Apr 1995 01:10:10 GMT cfheader name=last-modified value=01 Jan 1980 08:00:00 GMT/ cfheader name=pragma value=no-cache /

[cfaussie] httpparam encoded value

2007-04-30 Thread Angus Johnson
Wondering if someone has a workaround for the following: I'm using a cfhttp - get with a bunch of cfhttpparams to post to an asp form page that also uses method=get. Sounds easy enough but the asp page which processes the form errors with an invalid formfield value. I've tracked it down it to

[cfaussie] Re: httpparam encoded value

2007-04-30 Thread Andrew Scott
Hmm, I am under the impression that formfields can't be used with http gets. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. http://www.aegeon.com.au www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On

[cfaussie] Re: httpparam encoded value

2007-04-30 Thread KC Kuok
cfhttpparam name=my+term type=FORMFIELD value=* encoded=false/ shouldnt it be cfhttpparam name=my+term type=FORMFIELD value=* encoded=no/ According to the docs it is suppose to be :) Just my 2 cents On May 1, 1:50 pm, Angus Johnson [EMAIL PROTECTED] wrote: Wondering if someone has a