With this file you can intercept some events on a web page.
The interceptable events are: application start and end, sessione start and end.
Follows a global.asa example
<SCRIPT Language="VBScript" RUNAT="server">
Sub Application_onStart()
' start routine
End
Sub
Sub Application_onEnd() ' usually used to monitor application restarts ' (trhough e-mail or SMS)
End
Sub
Sub Session_onStart() ' when a session begins
End
Sub
Sub Session_onEnd() ' when a sessione ends
End Ssub