Hi all,
Is it possible to create a Jsp file containing frames ?
If so, i would like to know how to pass the parameters to both frames in the page .
Thankx
Yes, it can be done, I had to figure it out this very same way. YOu have to pass the parameters into the source of the source of the frame that you are calling.
//START OF JSP PAGE
<!-- Frames are to be placed in the top of an -->
<!-- HTML page BEFORE the BODY tag -->
<frameset cols="150,*" border="0" ID="TOP">
<frame name="LEFT" src=cciframesleft.jsp?ccmid=<%= ccmid %>&memid=<%= memid %> marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frame name="MAIN" src=cciframesmain.jsp?ccmid=<%= ccmid %>&memid=<%= memid %> marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
</frameset>
</frameset>
<body>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.