Scriptlet test page
<% for(int i=0;i< 10;i++) { out.println("
Hello World. This is a scriptlet test " + i + "
"); System.out.println("This goes to the System.out stream " + i); } %>