Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-06-02 Thread Kees de Brabander
: Zope Users Mailing List zope@zope.org Sent: Thursday, June 01, 2006 12:49 PM Subject: Re: [Zope] Internet Explorer does not follows redirect,while Firefox does Ok, I've been able to experiment. All my pages have the following in the head section: meta http-equiv=Cache-Control content

Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-06-02 Thread Gabriel Genellina
At Thursday 1/6/2006 07:49, Marco Bizzarri wrote: Ok, I've been able to experiment. All my pages have the following in the head section: meta http-equiv=Cache-Control content=no-cache meta http-equiv=Pragma content=no-cache meta http-equiv=Expires content=Date.Now

Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-06-02 Thread Marco Bizzarri
Thanks Kees, I will check today and I will report if this solves the issue :-). Regards Marco On 5/31/06, Kees de Brabander [EMAIL PROTECTED] wrote: Either dtml-call RESPONSE.setHeader('pragma','no-cache') or dtml-call RESPONSE.setHeader('Expires',(_.DateTime()-1).rfc822()) or both in the

Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-06-01 Thread Marco Bizzarri
Ok, I've been able to experiment. All my pages have the following in the head section: meta http-equiv=Cache-Control content=no-cache meta http-equiv=Pragma content=no-cache meta http-equiv=Expires content=Date.Now meta http-equiv=Pragma-directive content=no-cache

Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-06-01 Thread Cliff Ford
I have forgotten the exact details, but some time back I found it necessary to pad out the body of the redirect page in order to make IE perform as intended. It may have been for an older version of IE, and the padding just needed to be a certain number of bytes. I think I came across a later

Re: [Zope] Internet Explorer does not follows redirect, while Firefox does

2006-05-31 Thread Kees de Brabander
Either dtml-call RESPONSE.setHeader('pragma','no-cache') or dtml-call RESPONSE.setHeader('Expires',(_.DateTime()-1).rfc822()) or both in the head section of your page will do the trick. cb - Original Message - From: Marco Bizzarri [EMAIL PROTECTED] To: Zope Users Mailing List