What is the output comment and hide the comment in jsp?

Hiii I recently came across these terms like output comment and hide comment in jsp. I would like to know the differences between them. Thanks in advance.

+3


source to share


1 answer


Output comment:

The comment that is sent to the client at the source of the view page (it appears in the output).

<!-- output comment -->

      



Hidden comment:

Comments that document the JSP page but are not sent to the client (it is not displayed in the output).

<%-- hidden comment --%>

      

+6


source







All Articles