-
Refreshing Screens
Hi all,
I have a made a custom viewer for viewing web pages over a corporate Intranet. The problem is that each time the viewer visits a page it is picking the original page up from the cache. Is there any way I can make it look for a new page everytime it goes to a new URL.
Many thanks
Colin
-
Try putting these in the HEAD tag of the page you don't want cached:
Code:
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
Check out MSDN for more info...
-
Many thanks,
will try that.
Colin