I am using wicket in my web application. Assuming I have pages a b c where I move from A to B using page parameters change somthing in page B model using ajax and B to C (without using page params).
problem : The scenario is moving A->B->C while changing page b model and pressing the back button B<-C beacuse when page B instance (B1)was generated I used get parameters , therefore a new page B instance was generated(B2) I would like to return every time to page B
is there a wicket style solution to this problem ?
thank u for getting this far in my post :).