Re: Struts Equivalent

2006-10-10 Thread Antonio Petrelli
Chetan Pandey ha scritto: So is their a way we can say: session.removeAttribute("var1"); using No, you have to use tag of JSTL. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

RE: Struts Equivalent

2006-10-10 Thread Chetan Pandey
So is their a way we can say: session.removeAttribute("var1"); using Thanks. Chetan -Original Message- From: Antonio Petrelli [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 7:36 PM To: Struts Users Mailing List Subject: Re: Struts Equivalent Chetan Pandey

Re: Struts Equivalent

2006-10-10 Thread Antonio Petrelli
Chetan Pandey ha scritto: For the following Scriptlet: <%session.setAttribute("var1",null); %> Is the following equivalent: NO! session.setAttribute("var1", null); is equivalent to session.removeAttribute("var1"); is equivalent to session.setAttribute("var1", ""); --