Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can i exprire the page when the user click 'back' button?

Status
Not open for further replies.

H2

Programmer
May 17, 2001
24
HK
i tried :

<%
Response.Buffer = True
Response.Expires = 60
Response.Expiresabsolute = Now() - 2
Response.AddHeader &quot;pragma&quot;,&quot;no-cache&quot;
Response.AddHeader &quot;cache-control&quot;,&quot;private&quot;
Response.CacheControl = &quot;no-cache&quot;
%>


but still failed
is it useless for IE 5??

thanks for help :)
 
but what i wanna do is to prevent the user the submit the form again when they click 'back'button.
so create links of 'back' and 'previous' does not work in this case.

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top