Re: Application Variable not getting created

2005-05-23 Thread Sangeeth V S
-- 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

Re: Application Variable not getting created

2005-05-23 Thread Helmut Zeilinger
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

Re: Application Variable not getting created

2005-05-22 Thread Helmut Zeilinger
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

RE: Application Variable

2005-05-22 Thread John Drago
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

Re: Application Variable

2005-05-18 Thread Helmut Zeilinger
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