This attribute checks whether JSP page is in a particular HTTP session or not. It can have true or false value. Default value is true.
Syntax:
<Example:
welcome.jsp
<%@ page session="true" %> <html> <head> <title>session page directive example</title> </head> <body> <h3>Hello this is a session page directive example.</h3> <% out.print("Session id:" + session.getId()); %> </body> </html>web.xml
<web-app> <welcome-file-list> <welcome-file>welcome.jsp</welcome-file> </welcome-file-list> </web-app>Output:
Download this example.
Next Topic: buffer attribute in JSP page directive with example.
Previous Topic: Session attribute of JSP page directive with example.