Jag hatar verkligen när saker man tycker absolut skall funka inte gör det.. och man inte förstår varför!Global.asa (våga vägra logga ut mig)
Så kan någon vänlig själ säga vad som gör att inte Session_OnEnd "triggas"
<code>
<script language = VBScript Runat=Server>
SUB Application_OnStart
Application.Lock
Application("aktiva") = 0
Application.Unlock
END SUB
SUB Session_OnStart
Application.Lock
Application("aktiva") = Application("aktiva") + 1
Application("tidpunkt") = Now()
Application.Unlock
Set Con = Server.CreateObject("ADODB.Connection")
strCon = "driver={Microsoft Access Driver (*.mdb)};dbq=c:\inetpub/wwwroot/test.mdb;"
Con.open(strCon)
SQL = "Insert Into test Values('" & Session.SessionID & "','LOGGING IN')"
Con.Execute(SQL)
Con.Close
Set Con = nothing
END SUB
SUB Session_OnEnd
Application.Lock
Application("aktiva") = Application("aktiva") - 1
Application.Unlock
Set Con = Server.CreateObject("ADODB.Connection")
strCon = "driver={Microsoft Access Driver (*.mdb)};dbq=c:\inetpub/wwwroot/test.mdb;"
Con.open(strCon)
SQL = "Insert Into test Values('" & Session.SessionID & "','LOGGING OUT')"
Con.Execute(SQL)
Con.Close
Set Con = nothing
END SUB
</script>
</code>
Session_OnStart funkar fint... men inte On_End!
Please help me!!!!
MVH
Mattias