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

JSP Scope Demonstration

Invalid ate Session

Page Counter Values

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

Request 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:
<% } %>

Application Counter Values

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