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 different

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 an

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 session

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',-value=$usrID);

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

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