JSP - Comment Tag
JSP Comment
JSP Comment जब दी जाती है तब JSP Engine द्वारा दिए गए text को ignore किया जाता है | JSP Comment का इस्तेमाल jsp code को समझने के लिए किया जाता है |
Syntax for Comment Tag
<%-- comment --%>
Example for Comment Tag
Source Code :Output :<html> <head> <title>Comment Tag</title> </head> <body> <% out.print("JSP Comment"); %> <%-- This is a JSP Comment --%> </body> </html>
JSP Comment