Re: Back Button Issues

2006-04-19 Thread Jonathan Miller
Hi Pierre- Thank you for that but I'm still a little lost. In your example you have an abstract class getPersistentKeys, how would implement this? e.g. How do you get the keys to store? Thanks in advance Jon On Apr 17, 2006, at 9:18 PM, Pierre Bernard wrote: Have a look at the sample c

Re: Back Button Issues

2006-04-18 Thread Pierre Bernard
Have a look at the sample code (and comments) at http:// homepage.mac.com/i_love_my/code.html Pierre On Apr 17, 2006, at 8:34 PM, Jonathan Miller wrote: Hi, I'm following Apple's Guidelines on setting up server side page caching (i.e. setPageRefreshOn... && setPageCacheSize(int)) but it

Re: Back Button Issues

2006-04-17 Thread Guido Neitzer
On 17.04.2006, at 20:34 Uhr, Jonathan Miller wrote: e.g. when someone hits the back button and then uses a WOHyperlink w/n the page it performs the wrong action. In which context is the hyperlink? cug smime.p7s Description: S/MIME cryptographic signature ___

Re: Back Button Issues

2006-04-17 Thread Anjo Krank
Dunno if that is your problem but one of the most likely causes is having the underlying array of a WORepetition change between the time it rendered and the time the link was clicked (object inserted/ deleted, sort order changed, batch size changed etc). You have these options: - use Direc

Re: Back Button Issues

2006-04-17 Thread Jerry W. Walker
Hi, Jon, On Apr 18, 2006, at 12:42 AM, Jonathan Miller wrote: Hi, I'm certainly guilty of using the appendToResponse method without understanding its true role in the response generation, so this could very well apply to me. Since I'm mainly using appendToResponse to reset counters I u

Re: Back Button Issues

2006-04-17 Thread Jonathan Miller
Hi, I'm certainly guilty of using the appendToResponse method without understanding its true role in the response generation, so this could very well apply to me. Since I'm mainly using appendToResponse to reset counters I use during page generation do you think I'd be better served by

Re: Back Button Issues

2006-04-17 Thread Jerry W. Walker
Hi, Jonathan, I don't know what the abbreviation "w/n" means in your second sentence, so your message is a little difficult to parse, but it doesn't sound like you're facing a page caching issue (except, perhaps, indirectly). Performing the wrong action tends to be a characteristic of the

Back Button Issues

2006-04-17 Thread Jonathan Miller
Hi, I'm following Apple's Guidelines on setting up server side page caching (i.e. setPageRefreshOn... && setPageCacheSize(int)) but it doesn't seem to be working... e.g. when someone hits the back button and then uses a WOHyperlink w/ n the page it performs the wrong action. Does anyone