December 2003
Intermediate to advanced
764 pages
24h 58m
English
Example 5-1 also shows what a JSP comment looks like:
<%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
Everything between <%--
and
--%> is ignored when the JSP page is processed.
You can use this type of comment to describe what’s
going on in the page or to temporarily comment out pieces of the page
to test different alternatives. Since a JSP comment is a JSP element,
it’s never sent to the browser.
Read now
Unlock full access