<%@ page language="java" %> <%! int count = 0; %> <% for (int i = 0; i < 10; i++) { count = count+1; %>
The counter value is: <%= count %> <% } %>