><html> > <frameset rows="15%,*"> > <frame name="top" src="../header.jsp" marginheight=1> > > <frame name="bottom" src="../page.jsp" marginheight=1> > > </frameset> > </html> > > I wish to pass couple of parameters to header.jsp.Any > suggestions or can you point me to some documentation > that may help? Thank you in advance.
Why not just pass them with src="../header.jsp?param1=value1¶m2=value2"? Or am I missing something here? If you generate your frame code with jsp or something similar the task of passing dynamic parameters should be straightforward. You could of course also put stuff into the session or application if you feel that too much request parameters gets messy. Regards Erik Beijnoff =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant archives, FAQs and Forums on JSPs can be found at: http://java.sun.com/products/jsp http://archives.java.sun.com/jsp-interest.html http://forums.java.sun.com http://www.jspinsider.com
