I *think* he means to ask about Session Management in JSP:
By default, all JSP pages participate in HTTP session.
The HttpSession object can be accessed within scriptlets through the session implicit JSP object.(This is what you replied...Extention to that:)
Sessions are a good place for storing beans and objects that need to be shared across other JSP pages and
servlets that may be accessed by the user.
The session objects is identified by a session ID and can be stored in the browser as a cookie.
You can store any valid
Java object by identifying it by a unique key like this:
<%
Test test=new Test();
session.setAttribute ("test",test);
%>
And you can retrieve it on all JSP pages:
<%
Test newTest= (Test) session.getAttribute ("test");
%>
I am not sure but this might be the answer...
Yeah right..my mistake..