> >
> > how to pass parameters retrieved in a jsp page to the
> > next jsp page

Depends on your usage of 'next'....

If the next page is next in time:

- store info in the session or a session bean and retrieve it again

If the next page is via jsp:forward:

- add the info as parameters in the URL (GET method)

If the next page is via requestDispatcher forwarding:

- modify the request object before passing it on

If the next page is up to the user:

- put the info into cookies, or use URL rewriting when generating the links
for the next page

_3
M

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to