Forcining An ASP page to expire
am 26.01.2007 14:51:05 von SamHI - I have the following asp page and no matter what I try every time
I exit this page and click the back button the page remains in cache.
Any suggestions?
thanks
<%
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.write("
Response.write(" name='uidCallingWebPage' />")
Response.write("
Login: | ")autocomplete='Off' > | ")
Password: | ")> | ")
Response.write("
> |
Response.write("")
%>