Re: How to create a session object other than "session"

2002-08-10 Thread Martin Gainty
ence <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: How to create a session object other than "session" >Date: Fri, 9 Aug 2002 17:11:12 -0500 >MIME-Version: 1.0 >Received: from mc2-f14.law16.hotmail.com ([65.54.237.21]) by mc2-s9.law16.hotmail.com with Microsoft

Re: How to create a session object other than "session"

2002-08-09 Thread Bhangale, Bhushan
ow to create a session object other than "session" I am testing a session object so I created p1.jsp with the snippets: <% HttpSession currSession = request.getSession(true) currSession.setMaxInactiveInterval(3600); currSession.setAttribute("user", Name); currS

How to create a session object other than "session"

2002-08-09 Thread Roland Dong
I am testing a session object so I created p1.jsp with the snippets: <% HttpSession currSession = request.getSession(true) currSession.setMaxInactiveInterval(3600); currSession.setAttribute("user", Name); currSession.setAttribute("id", ID); ... %> In P2.jsp <% . currSession.inv