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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Expire pages in Firefox

Status
Not open for further replies.

aliashippysmom

Programmer
Jul 29, 2004
43
US
Hi! I have a coldfusion form. When the user hits submit, I expire the original FORM page so the back button won't work. In IE this works as I wish. A message is displayed that the page has expired. In Firefox, it does not work, the page is loaded. How can you expire a page for Firefox?

Here's what I have at the top of my ColdFusion pages:
<cfheader NAME="Expires" VALUE="Mon, 06 Jan 1990 00:00:01 GMT">
<cfheader NAME="Pragma" VALUE="no-cache">
<cfheader NAME="cache-control" VALUE="no-cache">

Thanks!
 
not sure if this will work but worth a try:


<cfheader NAME="cache-control" VALUE="no-store">
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top