> -----Original Message-----
> From: Sgarlata Matt [mailto:[EMAIL PROTECTED]
>    <META HTTP-EQUIV="Expires" CONTENT="Fri, Jun 12 1981 08:20:00 GMT">
>    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
>    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">

Your cache control is too agressive.  I had similar problems but resolved them using a 
different Cache-Control value:

            response.setHeader ("Expires", "Fri, 01 Jan 1999 12:00:00 GMT");
            response.setHeader ("Cache-Control", "private");    // HTTP 1.1 control
            response.setHeader ("Pragma", "no-cache");          // HTTP 1.0 directive

This was based on MS recommendations at the following, but now dead, link:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ppsdk14/Implementation/caching.asp

Richard


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to