there are two pages (for example pageA & pageB)for submiting a
request . in first page(pageA), necessary files can be attached to the
request . after filling pageA , pageB appears . In pageB ,the request
is completed and submitted to the server . to do this , I have used
post method in pageB and enctype="multipart/form-data" .
but I have a problem : in pageB when I click on "back" button in IE ,
an exception appears "page has expired".
To solve this problem , I used
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
in jsp page but he problem has not been corrected yet . please tell me
what can I do.