Re: cache control in Netscape

2006-04-17 Thread Denny Valliant
Sure. Use like 3 or 4 of the methods that are out there and you should be good in many variants. (Set the expires and other related headers... a quick google will show you what's out there) :D On 4/14/06, Barthle, Robert (Contractor) [EMAIL PROTECTED] wrote: Question for you gurus. We use

RE: cache-control

2003-05-27 Thread Mark W. Breneman
Can you elaborate a bit on the WSOD (white screen of death)? Is this the null null error in MX? If so, how should this help fix the problem? Mark W. Breneman -Macromedia Certified ColdFusion Developer -Network / Web Server Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com

RE: cache-control

2003-05-27 Thread Tony Weeg
fusion developer tony at navtrak dot net www.navtrak.net 410.548.2337 -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:36 PM To: CF-Talk Subject: RE: cache-control Can you elaborate a bit on the WSOD (white screen of death)? Is this the null

RE: cache-control

2003-05-27 Thread Mark W. Breneman
Ok, Too bad... I am hoping that updater 3 will fix my null null problems. Thanks MB -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 2:33 PM To: CF-Talk Subject: RE: cache-control nope, this is from a form submission, to a page that displays

RE: cache-control

2003-05-27 Thread Dave Carabetta
nope, this is from a form submission, to a page that displays results, a click off that page to another page, and then the user clicking the back button on their browser, and *!BANG!* some effed up error about the page no longer available or something I've successfully used this one line

RE: cache-control

2003-05-27 Thread Barney Boisvert
www.audiencecentral.com -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 12:33 PM To: CF-Talk Subject: RE: cache-control nope, this is from a form submission, to a page that displays results, a click off that page to another page, and then the user clicking

RE: cache-control

2003-05-27 Thread Tony Weeg
] Sent: Tuesday, May 27, 2003 3:42 PM To: CF-Talk Subject: RE: cache-control nope, this is from a form submission, to a page that displays results, a click off that page to another page, and then the user clicking the back button on their browser, and *!BANG!* some effed up error about the page

RE: cache-control

2003-05-27 Thread Tony Weeg
, 2003 3:44 PM To: CF-Talk Subject: RE: cache-control Far better solution is to use CFLOCATION after your form submission. So instead of this: request 1: get form request 2: post form data get results do this: request 1: get form request 2: post form data

Re: Cache-control: no-cache

2003-03-24 Thread Sean A Corfield
Cache-control is an HTTP/1.1 header; the Pragma: no-cache is an HTTP/1.0 hack. If you're only dealing with proxy servers that support HTTP/1.1, you're better off with Cache-control. However, you need to think about cookies etc so that the proxy server won't be too aggressive. The following is