RE: Removing a value from a map present in Session

2003-08-14 Thread Kris Schneider
rom: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: Monday, August 11, 2003 12:21 PM > To: Tag Libraries Users List; [EMAIL PROTECTED] > Subject: Re: Removing a value from a map present in Session > > > With JSTL: > > > > Quoting shanmugampl <[EMAIL PROTECTED]>

RE: Removing a value from a map present in Session

2003-08-12 Thread Siggelkow, Bill
Ahh !! You're right! I was just looking at the spec for and it is clearly stated. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 12:51 PM To: Tag Libraries Users List Subject: RE: Removing a value from a map present in Session

RE: Removing a value from a map present in Session

2003-08-11 Thread Siggelkow, Bill
: Monday, August 11, 2003 12:21 PM To: Tag Libraries Users List; [EMAIL PROTECTED] Subject: Re: Removing a value from a map present in Session With JSTL: Quoting shanmugampl <[EMAIL PROTECTED]>: > Hi, > > I have a map in session scope which contains an entry with key >

Re: Removing a value from a map present in Session

2003-08-11 Thread Kris Schneider
With JSTL: Quoting shanmugampl <[EMAIL PROTECTED]>: > Hi, > > I have a map in session scope which contains an entry with key > "name". I want to remove that entry from the map > > <%= ((Map)session.getAttribute("map")).remove("name") %> > > How do i achieve this in jstl el ? > > Thanks