Switch to full style
JSP Code Examples
Post a reply

jsp comments

Fri Jan 16, 2009 6:19 pm

JSP(Java server pages) comments Example , there are two types of JSP examples .

Code:

 
<% 
    
    
// Java comments 

    
%>
 

the comment is copied to the generated servlet

and one using jsp comment tags ,which not copied to the generated servlet
Code:

 
<% 
    
    <%-- 
JSP comments --%>

    %>
 


Here example

Code:
<html>
  <
HEAD>
    <
TITLE>JSP comments </TITLE>
  </
HEAD>
  <
BODY>
    <% 
    
    
// Java comments 
    
%>
  
    <%-- 
JSP comments --%>
  </
BODY>
</
HTML>
 




Post a reply
  Related Posts  to : jsp comments
 PHP comments     -  
 Shell style comments     -  

Topic Tags

Servlets/JSP