Can Webspeed Handle Cache Control?

gnome

Member
Hi,

I have a problem of handling cache in IE6. This application will be used in locations where users cannot install softwares in their local PC therefore updating their browser version might not be allowed.

<meta http-equiv="pragma" content="no-cache" />

I have put this piece of code between my <head></head> and seems not working at all. I have read PHP has its own server side script of handling cache as well as ASP. Does webspeed has its own cache handling script/s?


Thanks and regards.
 

Casper

ProgressTalk.com Moderator
Staff member
Did you try this in the output-headers procedure?

Code:
     output-http-header("Cache-Control","No-Cache").
     output-http-header("Expires","0").
Put this before outptting the content type.

OR add this:
<meta http-equiv="Cache-Control" content="No-Cache">
before your other statements:

<meta http-equiv="Pragma"        content="No-Cache">
<meta http-equiv="Expires"       content="0">

HTH,

Casper.

 

gnome

Member
Hi Casper,

I was wondering why this caching issue doesn't occur in my Windows XP. I might missed something there. But amazingly, your code worked!

You really save the century and thank you sooo much! Glad there are webspeed experts here.

Regards.:)
 
Top