On Mon, 3 Dec 2001, Nathaniel Reed wrote: > How should the data be persisted after the first screen parses the form > parameters? Is there a session object? Is the RunData instance > persisted for more than a single HTTP request? > > Right now the second screen parses the form parameters and the template > generates another form with those values from the first screen as > "hidden" form parameters.. > > In my other web development work I usually persist form parameters in > the session because it's the easiest thing to do... Is this "kosher?"
Either in the Session or in the User implementation's temporary storage Hashtable (i.e. user.setTemp(...)). -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
