<%@ page language="java" %> <%@ page import="jspexamples.counterBean" %>

JSP Scope Demonstration

Page Counter Values

<% for (int i = 0; i < 10; i++) { %> The counter value is:
<% } %>

Session Counter Values

<% for (int i = 0; i < 10; i++) { %> The counter value is:
<% } %>