Put the following on each ASP page which is not to be cached.
For HTML use the following:Code:<% '== DONT ALLOW CACHE ON CLIENT ==' Response.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = "no-cache" %>
Hope this helpsCode:<HTML><HEAD> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="-1"> </HEAD><BODY> </BODY> </HTML>![]()




Reply With Quote