Hi @17529290
Below is the syntax for if-else condition in jsp.
<c:choose>
<c:when test="${properties.abc == 'Yes'}">...</c:when> <!-- if condition -->
<c:when test="${properties.abc == 'No'}">...</c:when> <!-- else if condition -->
<c:otherwise>...</c:otherwise> <!-- else condition -->
</c:choose>-