Such a freakin stupid thing THE PATH! I remain in ur debt 4 eva.
Let it b known that.............. JAMES YOU ARE DA MAN OF NOTE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Thanks! leon -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of JGM Sent: Monday, January 09, 2006 11:30 AM To: CTJUG Forum Subject: [CTJUG Forum] Re: Struts and tiles Mister Leon... My best guess is that you are probably not referencing the jsp pages correctly in your actual jsp page. JSP pages aren't usually placed in the WEB-INF folder, so I think if you change: <tiles:insert page="/WEB-INF/pages/masterTemplate.jsp" flush="true" > <tiles:put name="title" value="Login Page" /> <tiles:put name="header" value="/WEB-INF/pages/header.jsp" /> <tiles:put name="content" value="/WEB-INF/pages/content.jsp" /> <tiles:put name="footer" value="/WEB-INF/pages/footer.jsp" /> </tiles:insert> to: <tiles:insert page="/pages/masterTemplate.jsp" flush="true" > <tiles:put name="title" value="Login Page" /> <tiles:put name="header" value="/pages/header.jsp" /> <tiles:put name="content" value="/pages/content.jsp" /> <tiles:put name="footer" value="/pages/footer.jsp" /> </tiles:insert> then it'll hopefully work. James
