<%
String theSharedObject = "JSP is cool";
application.setAttribute("message", theSharedObject);
%>
<HTML>
<HEAD>
<TITLE>Application Object - Page 1</TITLE>
</HEAD>
<BODY>
This page sets data that can be retrieved by other pages in the application.<P>
Click <a href="application_page2.jsp">here</a> to see this in action.
</BODY>
</HTML>
|