how to pass information from one jsp page to other jsp page
i have retrieved some data in a jsp page1.i've gi开发者_如何学Goven link of page2 in page1.i want that when i click the link the data is displayed on page2.how to do that???
Options:
- Use session
- Use URL params
- Use POST form
- Use a cookie
See http://www.apl.jhu.edu/~hall/java/Servlet-Tutorial/Servlet-Tutorial-Session-Tracking.html for a tutorial on sessions.
精彩评论