Hi
I have a bean declared on a page that holds a frameset
<jsp:useBean id="pos" class="MyBeanscope="page">
<jsp:setProperty name="a" property="a"/>
</jsp:useBean>
[some initialisation of MyBean]
<frameset ... >
<frame src="/myframe1.jsp"...>
<frame src="/myframe2.jsp"...>
</frameset>
My question is, how do I access MyBean in the jsps that belong in the frameset? If I declare them again within each frame jsp, I think I'll end up with three of them.
Thanks for any help
Ryan