Passing parameters to jsp page in IFRAME
843836Jul 13 2004 — edited Sep 29 2008I have a First.jsp page that includes another Second.jsp page using <IFRAME SRC = "Second.jsp">
First.jsp calls some beans and gets ArrayList result. I need to pass this result as parameter to Second.jsp.
How can i achieve that. I dont want to make it as a session attribute or as an instance variable of the bean.
Unfortunately <IFRAME> does not exactly work like an <jsp:include> where we can have <jsp:param>
I need <IFRAME> as the result data is large and need scrolling.
Any help is appreciated.
Thanks!