KevinRobinson wrote :
> If I use <%@ include file="/include/amt_header.jsp" %>
>
> File "/include/amt_header.jsp" not found.
This is because the file include is dependant on the OS file system. So
if you are using windows and the JSP pages are on drive X:, then the
above statement will look for the file in X:\include.
You must either place the fully qualified path in the include (highly
not portable, as your development environment paths most likely do not
match your test and production paths, or use relative paths.
Count the directories. I have include directives which are several
layers deep:
<%@ include file="../../../_include/_setup.jspf" %>
--
Wojtek