


On page these is content and read mode button. Earlier by clicking on content and read mode it navigates to new page. Now my requirement is keep clickable option for content as optional by creating dailog. Want test condition for this in jsp
Solved! Go to Solution.
Views
Replies
Total Likes
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>-
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>-