2025-04-27 07:49:33 -04:00

18 lines
410 B
Plaintext

<SCRIPT LANGUAGE="VBScript" RUNAT="Server">
Sub Session_OnStart
'Insert script to be executed when a session starts
End Sub
Sub Session_OnEnd
'Insert script to be executed when a session ends
End Sub
Sub Application_OnStart
'Insert script to be executed when the application starts
End Sub
Sub Application_OnEnd
'Insert script to be executed when the application ends
End Sub
</SCRIPT>