Good day.

Control flow as you describe can be implemented with a standard JSTL tag as
in the following example:

<c:set var="cid" value="${param.contactId}"/>

<c:forEach var="contact" items="${sessionScope.LOG}">
     <c:choose>
           <c:when test="${contact.contactId == cid}">
              <c:set var="con" value="${contact}"/>
           </c:when>
     </c:choose>
</c:forEach>

This link may help:
http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html

hth,

Mark


On 5/24/06, Natarajan IMS <[EMAIL PROTECTED]> wrote:

Hai All,
I am new to struts frame work. any one of u suggest / explain how to use
the
all struts tags in jsp file. I can't understand how to handle the form
bean
values in jsp using struts tag.

is there any way to implement in if condition in struts logic tags.

Regards,
NAT




--
Mark
AE6RT

Reply via email to