JSP – Comment Tag

JSP Comment Tag

  • JSP comment tag is used to marks jsp code as comment.
  • The code inside comment tag will be ignored by web container.
  • JSP comment is just like HTML comment

Syntax:

<%– JSP comment –%>

welcome.jsp:

<html>
            <head>
                        <title>Comment tag example</title>
            </head>
            <body>
                        This Line is Visible.
                        Comment Line followed by this not visible.
                        <!– Hello World –>
            </body>
</html>
Scroll to Top