I am designing a page, whose contents will change according to the
input of user. But it always retrieves data from cache, which is
stale copy. how to force it to reload html page in ACS? Thanks.
Hi Bikui!
well, in your http header you should write something like:
ns_write "HTTP/1.0 200 OK
MIME-Version: 1.0
Content-Type: text/html
Pragma: no-cache
the rest of the page goes here
....
"
The no-cache thing is what you are looking for...
Be warned, that if you expect Microsoft browsers that this is often not enough to prevent caching. You also need to add the following after the closing body tag.