<Complete Session Object Référence
Session_OnStart événement
L'événement Session_OnStart se produit lorsque le serveur crée une session.
Cet événement est placé dans le fichier Global.asa.
Session_OnEnd événement
L'événement Session_OnEnd se produit lorsque la session se termine (abandoned or times out) .
Cet événement est placé dans le fichier Global.asa.
Note: La méthode MapPath ne peut pas être utilisé dans le code Session_OnEnd.
Syntaxe
<script language="vbscript" runat="server">
Sub Session_OnStart
. . .
End Sub
Sub Session_OnEnd
. . .
End Sub
</script>
Exemples
Global.asa:
<script language="vbscript" runat="server">
Sub Application_OnEnd()
Application("totvisitors")=Application("visitors")
End Sub
Sub Application_OnStart
Application("visitors")=0
End Sub
Sub Session_OnStart
Application.Lock
Application("visitors")=Application("visitors")+1
Application.UnLock
End Sub
Sub Session_OnEnd
Application.Lock
Application("visitors")=Application("visitors")-1
Application.UnLock
End Sub
</script>
Pour afficher le nombre de visiteurs actuels dans un fichier ASP:
<html>
<head>
</head>
<body>
<p>
There are <%response.write(Application("visitors"))%>
online now!
</p>
</body>
</html>
<Complete Session Object Référence