<!--File jsp001.jsp 02/05/00 This is a very simple example of Java Server Pages. See the file named jsp001.htm for instructions on how to install this file in a jsp server and how to execute it. --> <html> <body> <H1>My First JSP Page</H1> <H2>Hello, JSP world!</H2> <% for (int i=0; i<11; i++) { %> <br> <%= i %> <% }//end for loop %> <H3>Isn't this fun</H3> </body> </html> Figure 6 |