hgolan has asked for the wisdom of the Perl Monks concerning the following question:
script A:
<HTML> <script> function go(URL){ window.open(URL); } </script> <BODY> <% $Session->Abandon(); %> <BR> <BUTTON onclick=go('b.asp')>BBBB </BODY> </HTML>
script B:
clicking twice on the button will open two windows that have the same session id can the two windows work at the same time on a different session object?<HTML> <BODY > <% print $Session->{SessionID}; %> </BODY> </HTML>
edited: Tue Feb 25 14:24:48 2003 by jeffa - code tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: force to work with new session
by jasonk (Parson) on Feb 25, 2003 at 14:00 UTC | |
by hgolan (Initiate) on Feb 25, 2003 at 14:47 UTC |