The <c:out< tag evaluates an expression and writes its value to the output stream. The syntax of the
<c:out value=”TagValue”>
default value
</c:out>
The attributes of the <c:out> tag are as follows:
- value: This is a mandatory attribute. It declares the expression to be evaluated.
- escapeXml: This is an optional attribute that determines whether characters <, >, &, ‘, and ” in the resulting string should be converted to their corresponding character entity codes.
Responses to “What is c:out?”