Hi Diego,

do it like Martin described. Or try out the RequestDispatcher:

request.setAttribute(key1, value1);
request.setAttribute(key2, value2);
[...]
RequestDispatcher rd =
getServletContext().getRequestDispatcher(myServletUrl);
rd.forward(request, response);

Thomas



--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to