![]() |
|
|
+ Search |
![]()
|
Feb 23rd, 2000 21:45
Nathan Wallace, Martin Honnen
I am able to do
function f() { Response.Write('Kibology'); }
Session('f') = f;
and to retrieve
var f = Session('f');
on another page where
typeof f
shows
function
but I get an error when trying to call f as in
f()
further on.