in the wicket examples, the "go back" link uses
BookmarkablePageLink. I also trying to do "go back"
link except i would like the "return page" to keep
state, not create a new page. so instead i used

add( new Link("backLink") {
   public void onClick() {
      setResponsePage( returnPage );
   }
}

this method successfully keep the return page state.
however, when i try to go to any page via the return
page, i get an page expired error.

anyone else have a better solution to my problem?
hopefully i described my problem adequately

thanks,

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


-------------------------------------------------------
SF.Net email is sponsored by: Tell us your software development plans!
Take this survey and enter to win a one-year sub to SourceForge.net
Plus IDC's 2005 look-ahead and a copy of this survey
Click here to start!  http://www.idcswdc.com/cgi-bin/survey?id=105hix
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to