> -----Original Message-----
> From: Octavian Rasnita [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, August 24, 2002 1:36 PM
> To: [EMAIL PROTECTED]
> Subject: No cache
> 
> 
> Hi all,
> 
> I thought that the browser doesn't caches the pages created 
> on the fly by a
> CGI script but it does.
> 
> Do you know what I should do to make it not to cache?

I recommend the following to prevent caching:

    print $q->header({Expires=>'now', 'Cache-control'=>'no-cache'});

> 
> Should I use an html meta tag? What is it?

META HTTP-EQUIV is kind of pointless for CGI, since you can generate HTTP
headers directly.

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

Reply via email to