Thanks Joshua,
Sigh, I guess I have to redesign my code. It hadn't even occurred to me
that ASP's session management may not be available outside of ASP. It's a
shame, though, to have use two different code bases to do essentially the
same task. What would be nice if all of ASP's session stuff got moved into
Apache::ASP::Session which could be used from anywhere. I think this is
more efficient, as: 1) the same code can be used in ASPs and perl handlers;
2) memory resources are conserved by sharing session data structures; etc.
Cheers
Dmitry
>I would do a normal $Response->Redirect() in the
>Script_OnStart event handler, which you can define in
>the global.asa.
>...
>If you want to do it outside of Apache::ASP, you could
>look into using Apache::Session with a PerlPostReadRequestHandler