N
Nevena
This is probably really simple question for someone with some ASP experience.
I have created a file
SetSessions.inc
And this is the body of the file
<%
'Set session objects
Function SetRefBy()
dim rs
if Session("RefBy").value="" then
session("RefBY")="<OPTION>Test Sessions</OPTION>"
End if
SetRefBy=Session("RefBy").value
End function
%>
Every time when I call function SetRefBy I receive the message
Microsoft VBScript runtime (0x800A01A8)
Object required: 'Session(...)'
/Include/SetSessions.inc, line 8
Any ideas, it has to be trivial, but not for me
???
Thanks!!!
I have created a file
SetSessions.inc
And this is the body of the file
<%
'Set session objects
Function SetRefBy()
dim rs
if Session("RefBy").value="" then
session("RefBY")="<OPTION>Test Sessions</OPTION>"
End if
SetRefBy=Session("RefBy").value
End function
%>
Every time when I call function SetRefBy I receive the message
Microsoft VBScript runtime (0x800A01A8)
Object required: 'Session(...)'
/Include/SetSessions.inc, line 8
Any ideas, it has to be trivial, but not for me
Thanks!!!