JSP comment tag is used to marks jsp code as comment i.e. the code inside comment tag will be ignored by web container.
Syntax:
<
Example:
welcome.jsp
<html> <head> <title>Comment tag example</title> </head> <body> This is Comment tag example. Next line is commented so will not be visible. <!-- Hello World --> </body> </html> |
web.xml
<web-app> <welcome-file-list> <welcome-file>welcome.jsp</welcome-file> </welcome-file-list> </web-app> |
Output:
Download this example.
Next Topic: JSP directives with example.
Previous Topic: JSP Expression tag with example.