Help,
I have a series of pages set up in a wizard fashion, user goes from page 1 to 2 to 3 etc. After they leave each page the data they have entered is submitted to a java servlet.
I have a button on my page which calls history.back() to take the user to the previous page.
If the user goes back a page the data they have entered is not there. If they referesh the page it shows. I have set my meta data as follows:
<META HTTP-EQUIV="refresh">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html"> <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="0">
What I am trying to achieve is to have a button that sends the user to the previous page, showing what they have submitted to the server. For that to occur I need the previous page refreshed.
I thought the META tags would covere the refresh problem but they are not. Any help is appreciated.
Alex
I have a series of pages set up in a wizard fashion, user goes from page 1 to 2 to 3 etc. After they leave each page the data they have entered is submitted to a java servlet.
I have a button on my page which calls history.back() to take the user to the previous page.
If the user goes back a page the data they have entered is not there. If they referesh the page it shows. I have set my meta data as follows:
<META HTTP-EQUIV="refresh">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html"> <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Expires" CONTENT="0">
What I am trying to achieve is to have a button that sends the user to the previous page, showing what they have submitted to the server. For that to occur I need the previous page refreshed.
I thought the META tags would covere the refresh problem but they are not. Any help is appreciated.
Alex