in reply to Re: How can i access a session(CGI::Session) variable in other forms?
in thread How can i access a session(CGI::Session) variable in other forms?
But the answer you have already been given is correct. You need some way to 'transfer' the state from one form to the next, the most common way to do this is by using a cookie to carry just the session-id form form to form. You can, if necessary, do this with query strings, but this is somewhat messier and less transparent.
By using a framework such as CGI::Application and the session manager plug-in the whole process becomes even more transaprent.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How can i access a session(CGI::Session) variable in other forms?
by simy (Initiate) on May 08, 2006 at 19:10 UTC | |
by ww (Archbishop) on May 08, 2006 at 19:30 UTC | |
by jdtoronto (Prior) on May 09, 2006 at 02:50 UTC |