--- adambomb <[EMAIL PROTECTED]> wrote:
> Also Im a bit confused that what is this 'id'
> attribute for? in iterate tag.

"""
The name of a page scope JSP bean that will contain
the current element of the collection on each
iteration, if it is not null.
"""

It's so you can access the current element of what
you're iterating over; modified from example on the
iterate tag docs:

"""
<logic:iterate id="element" name="myhashtable">
  Current element: <bean:write name="element" 
                               property="value"/>
</logic:iterate>
"""

d.


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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

Reply via email to