Strange Struts tld problem

2005-10-19 Thread Koon Yue Lam
Hi, Assume I have 2 jsp(s), header.jsp and content.jsp In header.jsp, I have: %@ taglib uri=/WEB-INF/tld/struts-bean.tld prefix=bean % %@ taglib uri=/WEB-INF/tld/struts-html.tld prefix=html % %@ taglib uri=/WEB-INF/tld/struts-logic.tld prefix=logic % %@ taglib uri=/WEB-INF/tld/element.tld

Re: Strange Struts tld problem

2005-10-19 Thread Wendy Smoak
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

Re: Strange Struts tld problem

2005-10-19 Thread Koon Yue Lam
sorry, the include in my first mail was wrong, it should be: %@ include file=../common/header.jsp % and it still can't locate those tld On 10/20/05, Wendy Smoak [EMAIL PROTECTED] wrote: From: Koon Yue Lam [EMAIL PROTECTED] Assume I have 2 jsp(s), header.jsp and content.jsp In