1:<html>
   2:<head>
   3:<title>JSP Comments Example</title>
   4:</head>
   5:<body>
   6:<h2>JSP Comments Example</h2>
   7:<%-- Two expressions are listed below. Only one should print.  --%>
   8:<p>Ex1: This code will execute: <%= "Print this" %><br>
   9:<%-- 
  10:Ex2: This code is commented out: <%= "Print this" %><br>
  11:--%>
  12:</p>
  13:</body>
  14:</html>