Here is the question.
I have two .jsp files
test1.jsp and test2.jsp
test1.jsp
String temp = "test" ;
test2.jsp
String foo(String text )
{
return text ;
}
My question is. I would like to call function foo() in test1.jsp
without includeing <@! include file="test2.jsp" %>
is that possible. if yes, could you please tell me how.. I would
really appriciate your help..