RE: asp from perl

2002-04-08 Thread David Gray
> hello everyone,i am trying to execute an asp script from a > perl cgi and i have the following problem > > I am using something like this to get user's input and the > pass it to the asp > > &ReadParse (*input); > > my $pin; > my $passwd; > > my @input; > > $pin = $input {'pin'}; > > $p

Re: asp from perl

2002-04-08 Thread Kamali Muthukrishnan
I could be wrong, but I feel that your - my @input ; should not be an array declare, but a hash, as in - my %input ; Kamali >>> Hernan Marcelo Salvarezza <[EMAIL PROTECTED]> 04/08/02 11:00AM >>> hello everyone,i am trying to execute an asp script from a perl cgi and i have the following probl

asp from perl

2002-04-08 Thread Hernan Marcelo Salvarezza
hello everyone,i am trying to execute an asp script from a perl cgi and i have the following problem I am using something like this to get user's input and the pass it to the asp &ReadParse (*input); my $pin; my $passwd; my @input; $pin = $input {'pin'}; $passwd = $input {'passwd'}; my $pa