jsp:include with variables in struts

2002-12-05 Thread michael . j . coyle
Hi, I wish to include a number of jsps within my main jsp. The list of include files is retrieved from the database and stored in the ActionForm. I can then have a piece of jsp code as follows: logic:iterate id=section name=screenForm property=sectionList jsp:include page=bean:write

Re: jsp:include with variables in struts

2002-12-05 Thread Gemes Tibor
2002. december 5. 15:11 dátummal [EMAIL PROTECTED] ezt írtad: Hi, I wish to include a number of jsps within my main jsp. The list of include files is retrieved from the database and stored in the ActionForm. I can then have a piece of jsp code as follows: logic:iterate id=section

Re: jsp:include with variables in struts

2002-12-05 Thread Kris Schneider
Or with JSTL: logic:iterate id=section name=screenForm property=sectionList c:import url=${section.url}/ /logic:iterate or c:forEach var=section items=${screenForm.sectionList} c:import url=${section.url}/ /c:forEach Quoting Gemes Tibor [EMAIL PROTECTED]: 2002. december 5. 15:11 dátummal