makerjoe@... wrote:
> if I avoid "trans.application().forward(trans, 'list.psp')"
> <%
> req.setField('ww', ww)
> req.setField('rr', rr)
> req.setField('xx', xx)
> ################### trans.application().forward(trans, 'list.psp')
> %>
> <form action="list.psp" method="post">
> <INPUT type="hidden" name="aa" value="<%=aa%>">
> <INPUT type="hidden" name="bb" value="<%=bb%>">
> <INPUT type="hidden" name="cc" value="<%=cc%>">
>
> Does all req.values (aa,bb,cc,ww,rr,xx)will be send to list.psp ?
Then, if you press the submit button, only aa, bb, cc will be sent. The
req.fields belong only to the current request.
Maybe what you are really looking for are session values. If you
self.session().setValue('ww', ww) in your PSP file, then you can
retrieve ww with self.session().value('ww') in list.psp and all other
following requests.
-- Christoph
|