Sreekanth PK wrote:
> how can i pass an arraylist from jsp to action class with out the help
> of session or application variable???? Am not able to use
> request.setAtrribute in jsp to do this why??
>   

Because that's backwards.

The only way to get from a JSP to an Action is to submit a form (more or
less). That's a new request, so anything you put in to the _current_
request goes away.

You might want to check out some basics of the request cycle; that might
help you.

Dave




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

Reply via email to