You can always pop some data into the users temp hash via the RunData. Try:
RunData.getUserFromSession().setTemp(key,object); Then it's accessible to the following actions and templates for a little while. Templates can still get it then: $data.getUser().getTemp(key) Or you can stuff it into the context in your screen class if you're allergic to method invocations in templates. -Greg > -----Original Message----- > From: brian [mailto:[EMAIL PROTECTED] > Subject: persisting objects in context across requests > > Hello, > > Is there a way to save an object in the > (org.apache.velocity.context.Context) for longer than the current page > request, so it may retrieved from a different template page later? > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
