What exactly is the error you are getting?

Generally you'd save something as follows:
        
        session.setAttribute(key, object);

and retrieve it as follows:

        ObjectType object = (ObjectType) session.getAttribute(key);
        
-Deep.
> 
> hi guys
> How to retrieve a session scope action form in some other jsp file ..
> 
> I tries doing a session.getAttribute("[name]") but didnt work..
> 
> I am doing something wrong..
> 
> Thanks
> Anand



Reply via email to