JSTL c:if Core Tag
The JSTL <c:if> Core Tag is used in control flow. It evaluates an expression and execute a specific block of code is result returns true. Syntax: <c:if test ="testCondition"> //block of code </c:if><c:if test ="testCondition"> //block of code </c:if> c:if tag attributes: Attribute Description Required test It specify the condition to evaluate. Yes var It … Read more