I have the following code on a logout page :
use Data::Dumper;
warnd("b4",Dumper $Session);
$Session->Abandon();
warnd("after",Dumper $Session);
$Response->Redirect("/login/login.asp");Each time I print the contents of $Session, even after I have abandoned it, I get shown the same contents.
"warnd" is a logging function I use which just dumps to a file.
Why, even after I have abandoned a session, is there still data in the session object ?
Richard
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
