//sessionObject.jsp
The Session Object
The Session Object
Here are some properties of your session object.
The session was created at <%= session.getCreationTime() %>
The session has an inactive interval of <%= session.getMaxInactiveInterval() %>
The session id is <%= session.getId() %>
///
//logout.jsp
Log out
Log Out Page
<%
if (session != null) {
session.invalidate();
}
%>
You are now logged out. Bye