Posted By:
Akuma_Devil
Posted On:
Monday, November 14, 2005 01:27 AM
page1 works. page2 doesn't work. page3 works. -------------------------------------------------- -------------------------------------------------- page1.jsp <% aaa.SomeMethod() ; %> -------------------------------------------------- page2.jsp <% aaa.SomeMethod(); %> -------------------------------------------------- page2.jsp <% aaa.SomeMethod(); %> --------------------------
More>>
page1 works. page2 doesn't work. page3 works.
--------------------------------------------------
--------------------------------------------------
page1.jsp
<%
aaa.SomeMethod() ;
%>
--------------------------------------------------
page2.jsp
<%
aaa.SomeMethod();
%>
--------------------------------------------------
page2.jsp
<%
aaa.SomeMethod();
%>
--------------------------------------------------
--------------------------------------------------
Is there a way so I don't have to keep re-entering the jsp:useBean on included pages? (that would allow page2 to work)
Cheers.