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 asp script:
usrID = Request.Cookies("usrID")
but the asp script doesnt see the cookie. I can recall the same cookie again
later in a perl script so I know it exists.
What am I doing wrong ???? Surely what I am trying to do is possible ????
Thanks again
Anadi
> I'm not sure I understand your question. ASP provides
>objects to enable server side scripts to produce web pages.
>Those scripts can be written in any sever side scripting
>language including perlscrpt, VBscript, and Jscript.
> You can retrieve cookies in the ASP environment using
>the Cookies method of the Response object. This page walks
>you through an example.
>: 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 ??