Originally posted by Bear Bibeault:
When the include directive is used, the JSP with its included files is translated as a single unit.
But I still assert that includes are a poor way to break up code that is "too long".
Thanks Bear. I can understand that "First.jsp" can be compiled well. But "Second.jsp" is a separate file. When the server compiles it, is it compiled separately ? if yes, how can the variables defind in "First.jsp" be transported to it ("First.jsp" includes "Second.jsp", but "Second.jsp" doesn't include the "First.jsp") ??