Lombart Vincent (DBB) wrote: >Dear all, > >Does anybody know why the following JSP code does not work: > ><table border="1" cellspacing="0"> > <tbody> > <c:forEach items="${monitorBean.rows}" var="irow"> > <tr> > <c:forEach items="${irow.columns}" var="icol"> > <td><html-el:link action="monitor" paramId="monitorName" > paramName="icol"> > <c:out value="${icol}"/></html-el:link></td> > </c:forEach> > </tr> > </c:forEach> > </tbody> ></table> > > <table border="1" cellspacing="0"> <tbody> <c:forEach items="${monitorBean.rows}" var="irow"> <tr> <c:forEach items="${irow.columns}" var="icol"> <td><a href="monitor.do?monitorName=${icol.monitor}">${icol.monitor}</a></td> </c:forEach> </tr> </c:forEach> </tbody> </table>
What about something more like that?? Brandon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]