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 cookie.


:  ## send cookie print "Set-Cookie: $cookie\n";
: 
: and then I am trying to recall that cookie in an asp script:
: 
: usrID = Request.Cookies("usrID")

    I believe session cookies are dumped into the Session
object by ASP. Try using this.

usrID = Session("usrID")


HTH,

Charles K. Clarkson
-- 
Mobile Homes Specialist
254 968-8328


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to