# Richard Yee <[EMAIL PROTECTED]> on 02/05/2002 12:30:18 AM
# To do what you want, try this:
# <logic:iterate name="myBean" property="userList" id="currentUser">
# <% String ref = "admin_userForm.jsp?user_id=" + currentUser; %>
# <html:link href="<%= ref %>"><%= currentUser %></html:link><br>
# </logic:iterate>

  How about

 <logic:iterate name="myBean" property="userList" id="currentUser">
   <html:link href="admin_userForm.jsp" 
     paramName="currentUser" paramId="user_id">
       <bean:write name="currentUser"/>
   </html:link>
   <br>
 </logic:iterate>
 
 Pavel

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to