From: "Koon Yue Lam" <[EMAIL PROTECTED]>
Assume I have 2 jsp(s), header.jsp and content.jsp
In content.jsp, I include header.jsp like the following:
<%@ include file="../common/Header.jsp" %>
The include isn't working. Possibly because your file is named 'header.jsp'
and you're including 'Header.jsp', (watch the case!) or possibly because it
isn't where you think it is relative to content.jsp.
In addition, unless you're on Servlet 2.2, you don't need to put the tlds
under WEB-INF and map them in web.xml. Just use the URIs such as
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
and the tld file that's in struts.jar will be used.
--
Wendy Smoak
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]