Chapter 1 JSP Introduction
Example 1 (Effect is shown in Figure 1.1) Example1_1.jsp: <% @ Page ContentType = "Text / HTML; Charset = GB2312"%>  
   this It is a simple JSP page <% INT I, SUM = 0; for (i = 1; i <= 100; i   ) {SUM = SUM   I;}%> 
 1 to 100 continuous and: < Br> <% = sum%>  font>  body>  example 2 (shown in Figure 1.5) Example1_2.jsp: <% @ page contentType = "text / html; charset = GB2312"%> <% @ page import = "java.util. *"%>  
  The current time is: <% DATE = New Date ();%> 
 <% = DATE%>  Body>