Re: JSP Use-Bean help needed

2001-11-20 Thread Chen, Gin
Use Session.removeAttribute("xyz"); -Tim -Original Message- From: Mahendra (Indigo) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 4:03 AM To: [EMAIL PROTECTED] Subject: JSP Use-Bean help needed this tag is used to instantiate a simple java bean in JSP.

JSP Use-Bean help needed

2001-11-20 Thread Mahendra (Indigo)
this tag is used to instantiate a simple java bean in JSP. the scope identifier sets the life time of the bean. scope="page" the bean persists for that page only. scope="request" the bean persists for that request. scope="session" the bean persists for the whole session. Now my requirement is m