> JSPs seem to offer more than one way of storing Objects to a session
> context for session tracking purposes.
[quoted text clipped - 11 lines]
> Thanks
> Bruce
Under the hood, they are same. PageContext is a wrapper allowing access
to all scopes (application, session and request), as well as the
implicit objects (request, response). Personally I prefer the
session.setAttribute(name,value) as it is more reader-friendly when
looking at the code.
-cheers,
Manish
bruce_phipps@my-deja.com - 15 Dec 2006 09:32 GMT
> Under the hood, they are same. PageContext is a wrapper allowing access
> to all scopes (application, session and request), as well as the
[quoted text clipped - 4 lines]
> -cheers,
> Manish
Thanks, Manish. As I suspected, they both do exactly the same....
Bruce