passing dada from jsp to action class thru HTTP request.

2007-07-26 Thread Kameshwaran
I am trying to pass some values from the jsp to action class. I did something like this in the jsp:request.setAttribute("InvVOX", inventoryVOX); but when I try to get it in the action class(when the jsp gets submitted).I am getting null. Is there something I am missing here? Please do help me

Re: passing data(object) from jsp to action class thru HTTP request.

2007-07-26 Thread Kameshwaran
I have to pass object,so I think I should go for session? Am I right? newton.dave wrote: > > --- Kameshwaran <[EMAIL PROTECTED]> wrote: >> I am trying to pass some values from the jsp to >> action class. >> >> I did something like this in the