Mega Code Archive

 
Categories / Java / JSP
 

Comments in JSP page

<html>   <HEAD>     <TITLE>Comments in a JSP</TITLE>   </HEAD>   <BODY>     <% // A Java comment inside a scriptlet - copied into the generated servlet %>     The exemplar that generated this page uses a combination of HTML, Java and JSP comments.     <%-- A JSP comment - not copied to the servlet, or the output --%>   </BODY> </HTML>