Placing a Object in Cookie
Hi,
I have a class named Test I placed the object of Test inside a session and try to take it in a other JSP
of same Session
<%
Test t = new Test();
session.putValue("obj",t);
%>
how to take the object t in the next page (with the code please)
Thanks in advance

