|
|
|
|
|
| | |
|
Active Server Pages what is asp programming how to sample asp example code scripts software asp forum mail sessions applications global.asa CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: cache control |
From: |
d |
Date: |
12/28/2000 5:04:38 PM |
IP: |
216.163.113.155 |
you can make it so the page is never cache'd in the first place...you can do this serveral ways...you can set it in the http header by using the
Response.AddHeader "Pragma","no-cache"
Response.AddHeader "Expires","Mon, 24 July 1998 08:00:00 GMT"
or you can add it into the html of the page in a meta tag
<meta http-equiv="pragma" content="no-cache">
<META http-equiv="expires" content="Mon, 24 July 1998 08:00:00 GMT"> |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|