![[sadeyes] [sadeyes] [sadeyes]](/data/assets/smilies/sadeyes.gif)
I'am busy with a ASP page that contains href's to pdf's.
I just need to know how I can refresh the page when the user clicks the back button after viewing a pdf??
Because the pdf's get updated quite often and the user needs to only see the most up to date pdf's.
I have tried the following to prevent the users browser from cacheing but to no availe:
<%Response.Expires = 15
Response.ExpiresAbsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "private"%>
and
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="expires" content="0">
which is basicly what is contained in thread333-575297
I know it's possible but how I don't know any more????
Thanks in advance for your help and my profined appoligies for my stupidity and English
Corne'
#-)