in reply to Disable cache of Perl web pages

Use the Cache-control (for HTTP 1.1) and Pragma (for HTTP 1.0) headers to say the page should not be cached. You can also use the Expires header to say it expires immediately.
print $cgi->header(-expires => 'now', -Cache_control => 'no-cache', -Pragma => 'no-cache');