in reply to Re: Re: Re: session ID
in thread session ID
Is this a perl script you are trying to run OUTSIDE OF IIS/ASP, or is this part of an ASP page ?
It will not work outside ASP.
If you are doing this inside ASP, why is the "$sid" variable outside the "<%" ?
Are you trying to do some funky client-side perl-script that gets info from the server ?
If you do not know the answer to the above question, I suspect the answer is NO - in which case your script needs to be all server side, thus:
<% $sid = Request.ServerVariables("HTTP_COOKIE"); %>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: session ID
by ssr (Initiate) on Oct 07, 2003 at 06:10 UTC | |
by NetWallah (Canon) on Oct 08, 2003 at 05:47 UTC | |
by Anonymous Monk on Oct 08, 2003 at 22:11 UTC |