From: "Angharad Stapleton" <[EMAIL PROTECTED]>
> The only way I can think of at the moment is to store
> information in session, and pass control back to form page with a
parameter
> that would tell it to open a pop-up window and get the information from
the
> session. I'm thinking there is probably an easier way to do this.

Session is probably the easiest way to do it.  If your session is getting
cluttered with a bunch of  Attributes, then consider creating a class to
encapsulate the ones that go together, or at least put them in a Map.

Another way would be to pass the needed information as request parameters
when you pop the window.  It's a separate request (which is probably what's
causing your initial data-passing problem) so you can send it
?parameters=on&the=url.

HTH,
Wendy Smoak


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to