You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Michael Zeitlin <mz...@bondisoftware.com> on 2001/01/22 20:35:51 UTC

Links in iterate tag

I am trying to create a link in an iterate tag and send some parameters in a
hashmap,  here is my code:

  <logic:iterate id="user" name="userForm" property="userList">
  <TR>
    <TD><form:link
href="/framesets/rightFrame/userMaintenance.do?action=edit">
                <bean:write name="user" property="userName"
filter="true"/></TD>
        </form:link>
    <TD><bean:write name="user" property="contactName"  filter="true"/></TD>
    <TD><bean:write name="user" property="userType"     filter="true"/></TD>
    <TD><bean:write name="user" property="modifiedDate" filter="true"/></TD>
   </TR>
   </logic:iterate>


This works fine,  but I cant seem to figure out how to send along some of
the info of the bean properties like "username" and "contactName" in a
hashMap to the action object.

Any help would be appreciated,
Mike