| Author |
JSP and IFrames
|
dennis zined
Ranch Hand
Joined: Mar 07, 2003
Posts: 330
|
|
Hi all. I have a JSP page that has an IFrame which contains another JSP page. Is it possible for the JSP page, contained within the IFrame, to pass its formbean to its parent JSP page? thanks.
|
SCJP 1.4<br />SCWCD 1.4
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
No, frames, as far as the server is concerned are separate webpages. Beans only exist on the server, not the client. What you can do (with modern browsers) is create a javascript object and pass that from one frame to another.
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
 |
|
|
subject: JSP and IFrames
|
|
|