Hi i have a JSP file , while trying to add code i got the 64k limit error. so i decided to add the code to another jsp file and include it inside the first one.
so i have
first.jsp
.....
<jsp:include page="second.jsp"/>
....
<%= foo(); %>
second.jsp ....
<%!
public String foo()
{
return "test";
}
>%
i try using this and i get this error message: "The method foo is undefined for the type first_jsp"
any idea what is the problem and how i can solve this ?