I appreciate the response Jesfre, That is definitely another way of doing it and I'll keep that in mind.
But for now, because of time and the destination page being static, I'm accomplishing what I want through pop-ups. Jesfre wrote: > > Other way may be doing the link like a submit button with javascript. > When the controller catch the object, you must put it on the session > scope, and when you are returning to the form, you must get the variable > again and fill the form fields with that object. > > > mortalexplorer wrote: >> >> This is the first time I'm using appfuse. >> >> Currently using version 2 along with struts2, spring and hibernate. >> >> I have a main registration jsp that the user fills out. At the end of >> the >> form contains a link to a "Terms of service" jsp. This page is pure text >> with a cancel button that returns to the registration (history.back()). >> >> I'm noticing with the firefox browser, when I click the "Terms of >> service" >> page and return to the registration (either through the browser back >> button >> or through the page cancel button), the form data disappears. >> >> This seems to be browser related. >> >> I tried the following on the terms of service page and couldn't preserve >> the history with firefox: >> >> 1) <input type="button" onclick="history.back()" value="<fmt:message >> key="button.done"/>"/> >> 2) <input type="button" onclick="history.back(-1)" value="<fmt:message >> key="button.done"/>"/> >> 3) <input type="button" onclick="history.go(-1)" value="<fmt:message >> key="button.done"/>"/> >> 4) a href="#" onclick="history.back(); return false;"> try me >> 5) a href="#" onclick="javascript:history.back(); return false;"> try me >> 6) a href='javascript:window.history.back()'>Please correct your form >> >> I would appreciate any feedback on how I can resolve this issue. >> >> > > -- View this message in context: http://www.nabble.com/Appfuse2---Firefox---Form-data-disappears%E2%80%8F-tf4378497s2369.html#a12497067 Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
