Neueste Web-Entwicklung Tutorials
 

ASP Events Application_OnStart und Application_OnEnd


<Vollständige Anwendungsobjekt Referenz

Application_OnStart Ereignis

Das Application_OnStart Ereignis tritt ein, bevor die erste neue Sitzung erstellt wird (when the Application object is first referenced) .

Dieses Ereignis wird in der Global.asa-Datei abgelegt.

Note: Referenzierung auf eine Sitzung, Anforderung oder Response - Objekte im Application_OnStart Ereignisskript einen Fehler verursachen.

Application_OnEnd Ereignis

Das Application_OnEnd Ereignis tritt auf, wenn die Anwendung beendet (wenn der Web-Server nicht mehr).

Dieses Ereignis wird in der Global.asa-Datei abgelegt.

Note: Die MapPath Methode kann nicht im Application_OnEnd Code verwendet werden.

Syntax

<script language="vbscript" runat="server">

Sub Application_OnStart
. . .
End Sub

Sub Application_OnEnd
. . .
End Sub

</script>

Beispiele

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>

Um die Anzahl der aktuellen Besucher in einer ASP-Datei anzuzeigen:

<html>
<head>
</head>
<body>
<p>
There are <%response.write(Application("visitors"))%>
online now!
</p>
</body>
</html>

<Vollständige Anwendungsobjekt Referenz