to check jstl null value
843838Jun 2 2007 — edited Jul 4 2008Hello sir,
I am using jstl in my application.
i am using the following code to display my generic name.
<c:forEach var="stone" items="${stones}" varStatus="status">
<c:out value="${stone.genericName}"/>
</c:forEach>
I need to print only if, its(<c:out value="${stone.genericName}"/>) not null.
What should i do to check if "stone.genericName" is null.??
With Regards...