RE: Back button skip a page?

2002-06-07 Thread Jerome Jacobsen
Location.replace worked perfectly. Thanks. -Original Message- From: Bartley, Chris P [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 6:22 PM To: 'Struts Users Mailing List' Subject: RE: Back button skip a page? Check out the javascript method location.replace()...i think

Back button skip a page?

2002-06-06 Thread Jerome Jacobsen
This may not be possible, but I hope it is. I have a Your request is being processed, please wait.. page. Once the user gets to the results page and hit their browser's Back button I want to skip that Wait page. Here is the page flow: Form Page - Wait Page - Results Page -- To unsubscribe,

Re: Back button skip a page?

2002-06-06 Thread Roy Truelove
sure that the Request is being processed page is not cached.. set the cache-control header to no-cache. Hope this helps, Roy - Original Message - From: Jerome Jacobsen [EMAIL PROTECTED] To: Struts User [EMAIL PROTECTED] Sent: Thursday, June 06, 2002 4:56 PM Subject: Back button skip a page

Back button skip a page?

2002-06-06 Thread mtstruts
Jerome, This may have only limited usefulness, but you may be able use the document's history object to skip the wait page in the browser's history. Something like: (Javascript) window.history.go(-2) but I'm not exactly sure how to detect the event that the user clicks the back button.

RE: Back button skip a page?

2002-06-06 Thread James Mitchell
http://struts-atlanta.open-tools.org ICQ: 27651409 AOLIM: jmitchtx (and NO I don’t use AOL;) -Original Message- From: Jerome Jacobsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 4:57 PM To: Struts User Subject: Back button skip a page? This may not be possible, but I

RE: Back button skip a page?

2002-06-06 Thread Bartley, Chris P
since the wait page was never added to the history. chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 4:26 PM To: [EMAIL PROTECTED] Subject: Back button skip a page? Jerome, This may have only limited usefulness