HttpServletRequest request = ((WebRequest)RequestCycle.get().getRequest()).getHttpServletRequest();                                           

                                            request.setAttribute("here", "Hello world");


this is wrong because you are storing the information in request scope whose lifetime is only of a single request. like maurice mentioned what you need to do is store in the session scope.

-Igor

Reply via email to