JSP page scope : Page Context « JSP « Java
- Java
- JSP
- Page Context
JSP page scope
<jsp:useBean id="myBookBean" class="com.java2s.Book"
scope="page" />
<html>
<head>
<title>page scope</title>
</head>
<body>
This page declares a page-scoped Book.
</body>
</html>
Related examples in the same category