Cache-control: no-cache

2003-03-27 Thread joe hobson
with CFHeader? like this... CFHEADER Name=Cache-control Value=no-cache:set-cookie,set-cookie2 is that what you're talking about? thanks for the help. . . . . . .joe ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Cache-control: no-cache

2003-03-24 Thread joe hobson
I've had trouble with bad proxy configurations lately. In the past I've used the Pragma:no-cache http header (via CFHeader) but had problems with browsers seeing pages as expired. Recently someone suggested using Cache-control: no-cache to tell the proxy server not to cache the page. Can anyone

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