I've seen several examples of this in the mail archives but for some reason I'm unable to make it work.
I have a base page foo.jsp <!-- foo.jsp --> <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <html:html locale="true"> <jsp:include page="bar.jsp" flush="true"/> </html:html> and an included page that contains a bunch of things amongst them a usage of the struts iterator tag <!-- bar.jsp --> <logic:iterate id="path" name="path" type="dao.daobeans.BaseLink"> <a href="viewResource?id=<jsp:getProperty name="path" property="id"/>">page</a> </logic:iterate> unfortunately it doesn't work I get complaints about an attribute having no value. (presumably the path attribute) I've also tried the <%@include .. static include without success. I know I'm not using the struts html:link tag here (because I can't use <jsp:getProperty .. in it) but if I cut and paste this code into the foo.jsp page it works perfectly fine. Any suggestions Thanks Rob -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

