On Mon, 4 Dec 2006 15:21:22 -0300, <[EMAIL PROTECTED]> wrote: > hi chris: > 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 ? >
No. req.setField only affects other consumers of this request in Webware. When you use forward(), the same request object will be inherited by the new script, so it will see them. In the case you have there, you are writing HTML back to the web browser, at which point this request object will be deleted. The response from the client's browser represents a brand-new request, and will only contain those variables that you wrote in the HTML form. -- Tim Roberts, [EMAIL PROTECTED] Providenza & Boekelheide, Inc. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Webware-discuss mailing list Webware-discuss@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/webware-discuss