如何比较JSTL中的字符串c:if

时间:2015-01-27 09:40:54

标签: jsp if-statement jstl

 <c:set var="name" value="${param.byName}"></c:set>
 <c:out value="${name}"></c:out>  // Here the value is displaying

 <c:forEach var="viewlist1" items="${inwardList}">
   <c:if test="${name eq viewlist1.vendor} ">
    <c:out value="${viewlist1.vendor}"></c:out>  // Here I am not getting
   </c:if>
</c:forEach>

JSTL c:如果不与String变量进行比较,任何人都可以帮助我。

0 个答案:

没有答案