| Hi Alan, sorry, should have said i that im on 1.5. I appear to have resolved it now - in ie7 anyway (my ie6 tester has gone to lunch). I added the annotation to all the methods that were returning the view method, as opposed to just annotating on the view method. I assumed that having the annotation on that one method would work for all those returning it but obviously not. thanks all the same. @HttpCache(allow = false) public Resolution findItem() { searchResult = ItemFinder.search(item.getTextSearch(), searchResult.getStart()); return new ForwardResolution("/WEB-INF/jsp/_findItem.jsp"); } @HttpCache(allow = false) public Resolution search() { if (logger.isDebugEnabled()) { logger.debug("search text: " + searchText); } item.setTextSearch(searchText, false); return findItem(); } @HttpCache(allow = false) public Resolution next() { searchResult.setStart(searchResult.getStart() + Settings.SEARCH_RESULTS_LENGTH); return findItem(); } @HttpCache(allow = false) public Resolution previous() { searchResult.setStart(searchResult.getStart() - Settings.SEARCH_RESULTS_LENGTH); return findItem(); } --- On Wed, 14/5/08, Alan Burlison <[EMAIL PROTECTED]> wrote: From: Alan Burlison <[EMAIL PROTECTED]> |
Sent from Yahoo! Mail.
A Smarter Email.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users
