<전체 응용 프로그램 개체 참조
의 Application_OnStart 이벤트
최초의 새로운 세션이 생성되기 전에의 Application_OnStart 이벤트가 발생 (when the Application object is first referenced) .
이 이벤트는 Global.asa 파일에 저장됩니다.
Note: 의 Application_OnStart 이벤트 스크립트에서 세션, 요청 또는 응답 객체를 참조하는 것은 오류가 발생합니다.
다음 Application_OnEnd 이벤트
애플리케이션 단부 (웹 서버가 정지 할 때) 때 다음 Application_OnEnd 이벤트가 발생한다.
이 이벤트는 Global.asa 파일에 저장됩니다.
Note: MapPath 메서드는 다음 Application_OnEnd 코드에서 사용할 수 없습니다.
통사론
<script language="vbscript" runat="server">
Sub Application_OnStart
. . .
End Sub
Sub Application_OnEnd
. . .
End Sub
</script>
예
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>
ASP 파일에서 현재 방문자 수를 표시하려면 :
<html>
<head>
</head>
<body>
<p>
There are <%response.write(Application("visitors"))%>
online now!
</p>
</body>
</html>
<전체 응용 프로그램 개체 참조