Warren Young
Fri, 05 Mar 2004 00:34:53 -0800
Make absolutely sure Apache::ASP is finding your global.asa to start with.
PerlSetVar Global "/path"
If your Script_OnStart() subroutine *does* work, but your Application_OnStart() doesn't, then we might have a problem.
Maybe there is a problem with the code itself? If you try the following, it should work:
<your global.asa> sub Application_OnStart { $Application->{foo} = "this is a test!"; }# end Application_OnStart()
sub Script_OnStart { $Response->Write( $Application->{foo} ); }# end Script_OnStart() </your globa.asa>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]