Hi,
I have a caching problem
My page is an dynamic .ASP page, with content
that needs to be refreshed when the page is visited again
I have put the following in my head tag to make sure the page is not cached:
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<meta http-equiv="cache-CONTROL" content="no-cache" />
<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>
I think I have done all possible things to make sure
my page is not cached,
but when i push the "back" button, the contents (and the page) is not refreshed, which means the page is cached....
ANybody a sollution for this problem?
Toeter
I have a caching problem
My page is an dynamic .ASP page, with content
that needs to be refreshed when the page is visited again
I have put the following in my head tag to make sure the page is not cached:
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<meta http-equiv="cache-CONTROL" content="no-cache" />
<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>
I think I have done all possible things to make sure
my page is not cached,
but when i push the "back" button, the contents (and the page) is not refreshed, which means the page is cached....
ANybody a sollution for this problem?
Toeter