I posted this in the ASP section and yet no reply.
Can anyone explain the problem with the "global.asa" file code that does not work on the LP servers?
The code is:
<script language="vbscript" runat="server">
Sub Application_OnStart
Session.Timeout = 20
Application.Lock
Application("WhosOn") = 0
Application.UnLock
End Sub
Sub Session_OnStart
Application.Lock
Application("WhosOn") = Application("WhosOn") + 1
Application.UnLock
End Sub
Sub Session_OnEnd
Application.Lock
Application("WhosOn") = Application("WhosOn") - 1
Application.UnLock
End Sub
</script>
I actually have to hide this file so that my pages will even load?
Thanks in advance, HarleyBlonde