Sounds like you will need to either use session scope to store your data, so that it lasts longer than a single request, or else render a hidden variable in a form to contain your values (this can be multiple values) that the next action can get and possibly parse. I think Struts "indexed properties" might help. Also it might help you to learn about using session-scoped form beans (ActionForms).

Without knowing exactly what you are trying to do, I suggest session-scoping your bean as a first idea.

Hope that helps.

Erik



Mike Young wrote:

I have developed pages and seen examples where a bean is passed from an
action to a jsp but how do I pass the bean on to an action when it is called by the jsp either by a submit or a hyperlink.


Note I want to pass a bean (array of info) rather than a simple parameter = value?

A pointer in the right direction would be very much obliged.







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





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



Reply via email to