if IsEmpty(Application(strCookieURL & "JumpBoxChanged")) then
strJumpBoxChanged = Session(strCookieURL & "JumpBoxDate")
else
strJumpBoxChanged = Application(strCookieURL & "JumpBoxChanged")
end if
Not sure if this is posted before. Where is the Application variable JumpBoxChanged set? I could not find it in config.asp.
I think it should be:
either this:
if IsEmpty(Application(strCookieURL & "JumpBoxChanged")) then
strJumpBoxChanged = DateToStr(strForumTimeAdjust)
Application.Lock
Application(strCookieURL & "JumpBoxChanged")= strJumpBoxChanged
Application.UnLock
else
strJumpBoxChanged = Application(strCookieURL & "JumpBoxChanged")
end if
or this:
if IsEmpty(Session(strCookieURL & "JumpBoxChanged")) then
strJumpBoxChanged = DateToStr(strForumTimeAdjust)
else
strJumpBoxChanged = Session(strCookieURL & "JumpBoxChanged")
end if