-- Original Message -
From: "Helmut Zeilinger" <[EMAIL PROTECTED]>
To: "Sangeeth V S" <[EMAIL PROTECTED]>
Cc:
Sent: Monday, May 23, 2005 1:57 PM
Subject: Re: Application Variable not getting created
> Hi,
>
> that's is what one was expecting.. go
27;ChecklistWeb::UsersObj'} = undef;
%>
Thanks,
Sangeeth
- Original Message -
From: "Helmut Zeilinger" <[EMAIL PROTECTED]>
To: "sangeethvs" <[EMAIL PROTECTED]>
Cc:
Sent: Monday, May 23, 2005 11:49 AM
Subject: Re: Application Variable not get
Hi sangeethvs,
just to make things less complicated - does it work when
you call
...
$Application->{'ChecklistWeb::UsersObj'} = $users;
print ref ($Application->{'ChecklistWeb::UsersObj'});
$Application->{'ChecklistWeb::UsersObj'} = undef;
...
in ONE test (asp) script?
Helmut
I'm trying
You could use the Data::Dumper module:
use Data::Dumper;
print "";
print Dumper( $Application );
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of sangeethvs
Sent: Tuesday, May 17, 2005 3:36 AM
To: asp@perl.apache.org
Subject: Application Variable
Hi,
H
Hi,
you might try something like this:
...
foreach my $ap_key (sort keys %{$Application}) {
print qq ($ap_key = $Application->{$ap_key});
}
...
Helmut
How do we print all the application variable names and its values? I
tried the following but it didn't work.
my $item;
foreach $item ($Applicat