Saturday, December 02, 2006

JSTL <c:out> Tag

Taglib: http://java.sun.com/jsp/jstl/core (Core)
Prefix: c
Attributes:
value | String = the value to output as HTML.
[default] | String = the value to output if value is null.
[escapeXml] | boolean = whether to convert special characters to character entity codes. Default is true.
Example:
<c:out value="${param.name}" /> // To output the value of the name parameter.