RE: more cookies in perl and asp

2004-11-07 Thread A Taylor
> >Anadi, are the Perl scripts and the ASPs on the same server (webhost, >not machine!)? In the same directory? >Maybe you have to specify the domain when creating the cookie. > >Jenda Hello Jenda, Both the perl scripts and the asp's are run on the same server BUT the asp's are run from a differen

RE: more cookies in perl and asp

2004-11-05 Thread Jenda Krynicky
From: "Charles K. Clarkson" <[EMAIL PROTECTED]> > A Taylor <[EMAIL PROTECTED]> wrote: > : Thanks for your reply, I am going to re-write my problem; > : I am creating a cookie in perl script: > : > : $usrID = createUsrID(); > : ## create cookie > : my $cookie = new CGI::Cookie(-name=>'usrID',-va

RE: more cookies in perl and asp

2004-11-05 Thread Charles K. Clarkson
A Taylor <[EMAIL PROTECTED]> wrote: : Thanks for your reply, I am going to re-write my problem; : I am creating a cookie in perl script: : : $usrID = createUsrID(); : ## create cookie : my $cookie = new CGI::Cookie(-name=>'usrID',-value=>$usrID); A cookie without an expiration is a sessi

more cookies in perl and asp

2004-11-05 Thread A Taylor
Thanks for your reply, I am going to re-write my problem; I am creating a cookie in perl script: $usrID = createUsrID(); ## create cookie my $cookie = new CGI::Cookie(-name=>'usrID',-value=>$usrID); ## send cookie print "Set-Cookie: $cookie\n"; and then I am trying to recall that cookie in a

RE: cookies in perl and asp

2004-11-04 Thread Charles K. Clarkson
A Taylor <[EMAIL PROTECTED]> wrote: : Hi all, : I have a problem that I am hoping someone can shed some : light on. I have written a cookie in perl and what I want : to do is read the cookie back but in an asp script. I can : read the cookie back in other perl scripts but the asp : script doesnt s

cookies in perl and asp

2004-11-04 Thread A Taylor
Hi all, I have a problem that I am hoping someone can shed some light on. I have written a cookie in perl and what I want to do is read the cookie back but in an asp script. I can read the cookie back in other perl scripts but the asp script doesnt see it. Why is this and is there anyway around it