If you don't want to use the session object, then you could use javascript on the client side. The simpliest form is just to call a function residing in the left.jsp page. Name the window you open and the frame you target and then later when you navigate to the frame (window), use the name.
You can make this "fancier" by creating a javascript message handler. The message handler and message gateway are different javascript objects you create. The message gateway object would reside in a page that doesn't get reloaded. Any other page that gets loaded can register its onw message handler with the message gateway. Using the message gateway/handlers abstracts the what you want to do to not knowing the implementation details of other frames. I have successfully used this concept in one of out application. Hope this helps. /Peter 1. Set the data on the server before the jsp files are downloaded. You don't have to use the -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 7:30 AM To: [EMAIL PROTECTED] Subject: Jsp Parameters [Urgent!] Hi everybody! Please I need help,... This is not a Tomcat question, but I know here I can find some JSP experts: Could you tell me all the ways I could send (safe) parameters from a jsp to a jsp file? Please discard the url parameters and the Session object... I have a jsp (Valida.jsp) which opens a new navigator window (javascript), and that new navigator window contents another jsp (Portal.jsp). I need to send some parameters from Valida.jsp to Portal.jsp. In fact the second Jsp is formed by frames and one of the frames has a jsp (Left.jsp) that needs those parameters... Could you please help me? Give some hints or examples... I really need your help.. Or if you couldn't, please tell me where I can find that information.... Thank you very much.. Nancy. =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://archives.java.sun.com/jsp-interest.html http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.jsp http://www.jguru.com/faq/index.jsp http://www.jspinsider.com
