JavaScript Session variables
How, if possible, does one set session state with JavaScript?? Is it the
same as VBScript:
Session("Crap") = "Whatever" ???
Thanks in Advance
[165 byte] By [
FAMOSO] at [2007-11-9 15:35:34]

# 1 Re: JavaScript Session variables
"FAMOSO" <michael@famososystems.com> wrote:
>
>How, if possible, does one set session state with JavaScript?? Is it the
>same as VBScript:
>
>Session("Crap") = "Whatever" ???
>
>Thanks in Advance
You can use Javascirpt but it will be the same as the way you did it here.
<% LANGUAGE=JAVASCRIPT%> at the top of the asp but this is not going to run
on the clients computer it is still going to vb located on the server. There
is no way to create a Session on the clients computer except for using something
like cookies.
Daniel at 2007-11-11 23:41:28 >
